This commit is contained in:
nannal
2020-01-26 21:03:32 +02:00
commit 562b320154
700 changed files with 120537 additions and 0 deletions

21
node_modules/javascript-stringify/LICENSE generated vendored Normal file
View File

@@ -0,0 +1,21 @@
The MIT License (MIT)
Copyright (c) 2013 Blake Embrey (hello@blakeembrey.com)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

118
node_modules/javascript-stringify/README.md generated vendored Normal file
View File

@@ -0,0 +1,118 @@
# JavaScript Stringify
[![NPM version][npm-image]][npm-url]
[![NPM downloads][downloads-image]][downloads-url]
[![Build status][travis-image]][travis-url]
[![Test coverage][coveralls-image]][coveralls-url]
> Stringify is to `eval` as `JSON.stringify` is to `JSON.parse`.
## Installation
```javascript
npm install javascript-stringify --save
bower install javascript-stringify --save
```
### Node
```javascript
var javascriptStringify = require('javascript-stringify');
```
### AMD
```javascript
define(function (require, exports, module) {
var javascriptStringify = require('javascript-stringify');
});
```
### `<script>` tag
```html
<script src="javascript-stringify.js"></script>
```
## Usage
```javascript
javascriptStringify(value[, replacer [, space [, options]]])
```
The API is similar to `JSON.stringify`. However, any value returned by the replacer will be used literally. For this reason, the replacer is passed three arguments - `value`, `indentation` and `stringify`. If you need to continue the stringification process inside your replacer, you can call `stringify(value)` with the new value.
The `options` object allows some additional configuration:
* **maxDepth** _(number, default: 100)_ The maximum depth of values to stringify
* **maxValues** _(number, default: 100000)_ The maximum number of values to stringify
* **references** _(boolean, default: false)_ Restore circular/repeated references in the object (uses IIFE)
* **skipUndefinedProperties** _(boolean, default: false)_ Omits `undefined` properties instead of restoring as `undefined`
### Examples
```javascript
javascriptStringify({}); // "{}"
javascriptStringify(true); // "true"
javascriptStringify('foo'); // "'foo'"
javascriptStringify({ x: 5, y: 6}); // "{x:5,y:6}"
javascriptStringify([1, 2, 3, 'string']); // "[1,2,3,'string']"
javascriptStringify({ a: { b: { c: 1 } } }, null, null, { maxDepth: 2 }); // "{a:{b:{}}}"
/**
* Invalid key names are automatically stringified.
*/
javascriptStringify({ 'some-key': 10 }); // "{'some-key':10}"
/**
* Some object types and values can remain identical.
*/
javascriptStringify([/.+/ig, new Number(10), new Date()]); // "[/.+/gi,new Number(10),new Date(1406623295732)]"
/**
* Unknown or circular references are removed.
*/
var obj = { x: 10 };
obj.circular = obj;
javascriptStringify(obj); // "{x:10}"
javascriptStringify(obj, null, null, { references: true }); // "(function(){var x={x:10};x.circular=x;return x;}())"
/**
* Specify indentation - just like `JSON.stringify`.
*/
javascriptStringify({ a: 2 }, null, ' '); // "{\n a: 2\n}"
javascriptStringify({ uno: 1, dos : 2 }, null, '\t'); // "{\n\tuno: 1,\n\tdos: 2\n}"
/**
* Add custom replacer behaviour - like double quoted strings.
*/
javascriptStringify(['test', 'string'], function (value, indent, stringify) {
if (typeof value === 'string') {
return '"' + value.replace(/"/g, '\\"') + '"';
}
return stringify(value);
});
//=> '["test","string"]'
```
## License
MIT
[npm-image]: https://img.shields.io/npm/v/javascript-stringify.svg?style=flat
[npm-url]: https://npmjs.org/package/javascript-stringify
[downloads-image]: https://img.shields.io/npm/dm/javascript-stringify.svg?style=flat
[downloads-url]: https://npmjs.org/package/javascript-stringify
[travis-image]: https://img.shields.io/travis/blakeembrey/javascript-stringify.svg?style=flat
[travis-url]: https://travis-ci.org/blakeembrey/javascript-stringify
[coveralls-image]: https://img.shields.io/coveralls/blakeembrey/javascript-stringify.svg?style=flat
[coveralls-url]: https://coveralls.io/r/blakeembrey/javascript-stringify?branch=master

View File

@@ -0,0 +1,10 @@
declare function stringify (value: any, replacer?: Function, space?: string | number, options?: javascriptStringify.Options): string;
declare namespace javascriptStringify {
export interface Options {
maxDepth?: number;
references?: boolean;
}
}
export = stringify;

View File

@@ -0,0 +1,384 @@
(function (root, stringify) {
/* istanbul ignore else */
if (typeof require === 'function' && typeof exports === 'object' && typeof module === 'object') {
// Node.
module.exports = stringify();
} else if (typeof define === 'function' && define.amd) {
// AMD, registers as an anonymous module.
define(function () {
return stringify();
});
} else {
// Browser global.
root.javascriptStringify = stringify();
}
})(this, function () {
/**
* Match all characters that need to be escaped in a string. Modified from
* source to match single quotes instead of double.
*
* Source: https://github.com/douglascrockford/JSON-js/blob/master/json2.js
*/
var ESCAPABLE = /[\\\'\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g;
/**
* Map of characters to escape characters.
*/
var META_CHARS = {
'\b': '\\b',
'\t': '\\t',
'\n': '\\n',
'\f': '\\f',
'\r': '\\r',
"'": "\\'",
'"': '\\"',
'\\': '\\\\'
};
/**
* Escape any character into its literal JavaScript string.
*
* @param {string} char
* @return {string}
*/
function escapeChar (char) {
var meta = META_CHARS[char];
return meta || '\\u' + ('0000' + char.charCodeAt(0).toString(16)).slice(-4);
};
/**
* JavaScript reserved word list.
*/
var RESERVED_WORDS = {};
/**
* Map reserved words to the object.
*/
(
'break else new var case finally return void catch for switch while ' +
'continue function this with default if throw delete in try ' +
'do instanceof typeof abstract enum int short boolean export ' +
'interface static byte extends long super char final native synchronized ' +
'class float package throws const goto private transient debugger ' +
'implements protected volatile double import public let yield'
).split(' ').map(function (key) {
RESERVED_WORDS[key] = true;
});
/**
* Test for valid JavaScript identifier.
*/
var IS_VALID_IDENTIFIER = /^[A-Za-z_$][A-Za-z0-9_$]*$/;
/**
* Check if a variable name is valid.
*
* @param {string} name
* @return {boolean}
*/
function isValidVariableName (name) {
return !RESERVED_WORDS[name] && IS_VALID_IDENTIFIER.test(name);
}
/**
* Return the global variable name.
*
* @return {string}
*/
function toGlobalVariable (value) {
return 'Function(' + stringify('return this;') + ')()';
}
/**
* Serialize the path to a string.
*
* @param {Array} path
* @return {string}
*/
function toPath (path) {
var result = '';
for (var i = 0; i < path.length; i++) {
if (isValidVariableName(path[i])) {
result += '.' + path[i];
} else {
result += '[' + stringify(path[i]) + ']';
}
}
return result;
}
/**
* Stringify an array of values.
*
* @param {Array} array
* @param {string} indent
* @param {Function} next
* @return {string}
*/
function stringifyArray (array, indent, next) {
// Map array values to their stringified values with correct indentation.
var values = array.map(function (value, index) {
var str = next(value, index);
if (str === undefined) {
return String(str);
}
return indent + str.split('\n').join('\n' + indent);
}).join(indent ? ',\n' : ',');
// Wrap the array in newlines if we have indentation set.
if (indent && values) {
return '[\n' + values + '\n]';
}
return '[' + values + ']';
}
/**
* Stringify a map of values.
*
* @param {Object} object
* @param {string} indent
* @param {Function} next
* @return {string}
*/
function stringifyObject (object, indent, next) {
// Iterate over object keys and concat string together.
var values = Object.keys(object).reduce(function (values, key) {
var value = next(object[key], key);
// Omit `undefined` object values.
if (value === undefined) {
return values;
}
// String format the key and value data.
key = isValidVariableName(key) ? key : stringify(key);
value = String(value).split('\n').join('\n' + indent);
// Push the current object key and value into the values array.
values.push(indent + key + ':' + (indent ? ' ' : '') + value);
return values;
}, []).join(indent ? ',\n' : ',');
// Wrap the object in newlines if we have indentation set.
if (indent && values) {
return '{\n' + values + '\n}';
}
return '{' + values + '}';
}
/**
* Convert JavaScript objects into strings.
*/
var OBJECT_TYPES = {
'[object Array]': stringifyArray,
'[object Object]': stringifyObject,
'[object Error]': function (error) {
return 'new Error(' + stringify(error.message) + ')';
},
'[object Date]': function (date) {
return 'new Date(' + date.getTime() + ')';
},
'[object String]': function (string) {
return 'new String(' + stringify(string.toString()) + ')';
},
'[object Number]': function (number) {
return 'new Number(' + number + ')';
},
'[object Boolean]': function (boolean) {
return 'new Boolean(' + boolean + ')';
},
'[object Uint8Array]': function (array, indent) {
return 'new Uint8Array(' + stringifyArray(array) + ')';
},
'[object Set]': function (array, indent, next) {
if (typeof Array.from === 'function') {
return 'new Set(' + stringify(Array.from(array), indent, next) + ')';
} else return undefined;
},
'[object Map]': function (array, indent, next) {
if (typeof Array.from === 'function') {
return 'new Map(' + stringify(Array.from(array), indent, next) + ')';
} else return undefined;
},
'[object RegExp]': String,
'[object Function]': String,
'[object global]': toGlobalVariable,
'[object Window]': toGlobalVariable
};
/**
* Convert JavaScript primitives into strings.
*/
var PRIMITIVE_TYPES = {
'string': function (string) {
return "'" + string.replace(ESCAPABLE, escapeChar) + "'";
},
'number': String,
'object': String,
'boolean': String,
'symbol': String,
'undefined': String
};
/**
* Convert any value to a string.
*
* @param {*} value
* @param {string} indent
* @param {Function} next
* @return {string}
*/
function stringify (value, indent, next) {
// Convert primitives into strings.
if (Object(value) !== value) {
return PRIMITIVE_TYPES[typeof value](value, indent, next);
}
// Handle buffer objects before recursing (node < 6 was an object, node >= 6 is a `Uint8Array`).
if (typeof Buffer === 'function' && Buffer.isBuffer(value)) {
return 'new Buffer(' + next(value.toString()) + ')';
}
// Use the internal object string to select stringification method.
var toString = OBJECT_TYPES[Object.prototype.toString.call(value)];
// Convert objects into strings.
return toString ? toString(value, indent, next) : undefined;
}
/**
* Stringify an object into the literal string.
*
* @param {*} value
* @param {Function} [replacer]
* @param {(number|string)} [space]
* @param {Object} [options]
* @return {string}
*/
return function (value, replacer, space, options) {
options = options || {}
// Convert the spaces into a string.
if (typeof space !== 'string') {
space = new Array(Math.max(0, space|0) + 1).join(' ');
}
var maxDepth = Number(options.maxDepth) || 100;
var references = !!options.references;
var skipUndefinedProperties = !!options.skipUndefinedProperties;
var valueCount = Number(options.maxValues) || 100000;
var path = [];
var stack = [];
var encountered = [];
var paths = [];
var restore = [];
/**
* Stringify the next value in the stack.
*
* @param {*} value
* @param {string} key
* @return {string}
*/
function next (value, key) {
if (skipUndefinedProperties && value === undefined) {
return undefined;
}
path.push(key);
var result = recurse(value, stringify);
path.pop();
return result;
}
/**
* Handle recursion by checking if we've visited this node every iteration.
*
* @param {*} value
* @param {Function} stringify
* @return {string}
*/
var recurse = references ?
function (value, stringify) {
if (value && (typeof value === 'object' || typeof value === 'function')) {
var seen = encountered.indexOf(value);
// Track nodes to restore later.
if (seen > -1) {
restore.push(path.slice(), paths[seen]);
return;
}
// Track encountered nodes.
encountered.push(value);
paths.push(path.slice());
}
// Stop when we hit the max depth.
if (path.length > maxDepth || valueCount-- <= 0) {
return;
}
// Stringify the value and fallback to
return stringify(value, space, next);
} :
function (value, stringify) {
var seen = stack.indexOf(value);
if (seen > -1 || path.length > maxDepth || valueCount-- <= 0) {
return;
}
stack.push(value);
var value = stringify(value, space, next);
stack.pop();
return value;
};
// If the user defined a replacer function, make the recursion function
// a double step process - `recurse -> replacer -> stringify`.
if (typeof replacer === 'function') {
var before = recurse
// Intertwine the replacer function with the regular recursion.
recurse = function (value, stringify) {
return before(value, function (value, space, next) {
return replacer(value, space, function (value) {
return stringify(value, space, next);
});
});
};
}
var result = recurse(value, stringify);
// Attempt to restore circular references.
if (restore.length) {
var sep = space ? '\n' : '';
var assignment = space ? ' = ' : '=';
var eol = ';' + sep;
var before = space ? '(function () {' : '(function(){'
var after = '}())'
var results = ['var x' + assignment + result];
for (var i = 0; i < restore.length; i += 2) {
results.push('x' + toPath(restore[i]) + assignment + 'x' + toPath(restore[i + 1]));
}
results.push('return x');
return before + sep + results.join(eol) + eol + after
}
return result;
};
});

64
node_modules/javascript-stringify/package.json generated vendored Normal file
View File

@@ -0,0 +1,64 @@
{
"_from": "javascript-stringify@^1.1.0",
"_id": "javascript-stringify@1.6.0",
"_inBundle": false,
"_integrity": "sha1-FC0RHzpuPa6PSpr9d9RYVbWpzOM=",
"_location": "/javascript-stringify",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "javascript-stringify@^1.1.0",
"name": "javascript-stringify",
"escapedName": "javascript-stringify",
"rawSpec": "^1.1.0",
"saveSpec": null,
"fetchSpec": "^1.1.0"
},
"_requiredBy": [
"/markov-chains"
],
"_resolved": "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-1.6.0.tgz",
"_shasum": "142d111f3a6e3dae8f4a9afd77d45855b5a9cce3",
"_spec": "javascript-stringify@^1.1.0",
"_where": "/home/dabbott/dev/chainy/node_modules/markov-chains",
"author": {
"name": "Blake Embrey",
"email": "hello@blakeembrey.com",
"url": "http://blakeembrey.me"
},
"bugs": {
"url": "https://github.com/blakeembrey/javascript-stringify/issues"
},
"bundleDependencies": false,
"deprecated": false,
"description": "Stringify is to `eval` as `JSON.stringify` is to `JSON.parse`",
"devDependencies": {
"chai": "^1.9.1",
"istanbul": "^0.3.0",
"mocha": "^1.21.3"
},
"files": [
"javascript-stringify.js",
"javascript-stringify.d.ts"
],
"homepage": "https://github.com/blakeembrey/javascript-stringify#readme",
"keywords": [
"stringify",
"javascript",
"object",
"string"
],
"license": "MIT",
"main": "javascript-stringify.js",
"name": "javascript-stringify",
"repository": {
"type": "git",
"url": "git+https://github.com/blakeembrey/javascript-stringify.git"
},
"scripts": {
"test": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec"
},
"typings": "javascript-stringify.d.ts",
"version": "1.6.0"
}