aboutsummaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/serialize.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/serialize.js')
-rw-r--r--deps/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/serialize.js36
1 files changed, 0 insertions, 36 deletions
diff --git a/deps/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/serialize.js b/deps/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/serialize.js
deleted file mode 100644
index 8113b6801d..0000000000
--- a/deps/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/serialize.js
+++ /dev/null
@@ -1,36 +0,0 @@
-'use strict';
-
-var toArray = require('./to-array')
- , isDate = require('../date/is-date')
- , isRegExp = require('../reg-exp/is-reg-exp')
-
- , isArray = Array.isArray, stringify = JSON.stringify
- , keyValueToString = function (value, key) { return stringify(key) + ':' + exports(value); };
-
-var sparseMap = function (arr) {
- var i, l = arr.length, result = new Array(l);
- for (i = 0; i < l; ++i) {
- if (!arr.hasOwnProperty(i)) continue;
- result[i] = exports(arr[i]);
- }
- return result;
-};
-
-module.exports = exports = function (obj) {
- if (obj == null) return String(obj);
- switch (typeof obj) {
- case 'string':
- return stringify(obj);
- case 'number':
- case 'boolean':
- case 'function':
- return String(obj);
- case 'object':
- if (isArray(obj)) return '[' + sparseMap(obj) + ']';
- if (isRegExp(obj)) return String(obj);
- if (isDate(obj)) return 'new Date(' + obj.valueOf() + ')';
- return '{' + toArray(obj, keyValueToString) + '}';
- default:
- throw new TypeError("Serialization of " + String(obj) + "is unsupported");
- }
-};