This repository has been archived by the owner on May 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
l33teral.js
460 lines (396 loc) · 11.9 KB
/
l33teral.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
/*global module, require, define*/
'use strict';
(function (global, factory) {
// CommonJS (node) module
if (typeof module === 'object' && module.exports) {
return module.exports = factory(
global
);
}
// AMD module
if (typeof define === 'function' && define.amd) {
return define([], function () {
return factory(global);
});
}
// browser
global.l33teral = factory(global);
}(this, function (global, undefined) {
// use native otherwise polyfill
var create = Object.create || (function () {
var F = function () {};
return function (o) {
if (arguments.length > 1) { throw new Error('Second argument not supported');}
if (o === null) { throw new Error('Cannot set a null [[Prototype]]');}
if (typeof o !== 'object') { throw new TypeError('Argument must be an object');}
F.prototype = o;
return new F();
};
})();
/**
* GraphError constructor
* @param operation
* @param {String} message
* @constructor
*/
function GraphError(operation, message) {
if (arguments.length === 1) {
message = operation;
operation = '';
}
Error.call(this, message);
this.name = 'GraphError';
this.operation = operation;
Error.captureStackTrace(this, this.constructor);
}
GraphError.prototype = create(Error.prototype);
GraphError.prototype.constructor = GraphError;
var isNull = function (target) {
return Object.prototype.toString.call(target) === '[object Null]';
};
var isUndefined = function (target) {
return Object.prototype.toString.call(target) === '[object Undefined]';
};
var isArray = Array.isArray ? Array.isArray : function (target) {
return Object.prototype.toString.call(target) === '[object Array]';
};
var isObject = function (target) {
return Object.prototype.toString.call(target) === '[object Object]';
};
/**
* L33teral constructor
* @param {Object} obj
* @constructor
*/
function L33teral(obj) {
this.__version__ = '{{VERSION}}';
this.obj = obj || {};
}
/**
* Traverses an object literal graph along `path` and returns
* a value if `path` exists. If `defaultValue` is specified,
* it will be returned if `path` does not exist. If it is not
* specified, a `GraphError` will be thrown.
* @param {String} path in the form of `foo.bar.baz`
* @param {*} [defaultValue]
* @return {*}
* @throws {Error}
*/
L33teral.prototype.tap = function (path, defaultValue) {
var properties = path.split('.'),
value = this.obj,
index = -1,
lastIndex = (properties.length - 1),
useDefault = (arguments.length === 2);
while (++index <= lastIndex) {
if (!isNull(value) && value.hasOwnProperty(properties[index])) {
value = value[properties[index]];
continue;
}
if (useDefault) {
return defaultValue;
}
var e = new GraphError('tap', 'graph detection failed');
e.failedAt = properties.slice(0, index + 1).join('.');
throw e;
}
if (isUndefined(value) && useDefault) {
return defaultValue;
}
return value;
};
/**
* Traverses an object literal along `path` and returns true
* or false if the path exists.
* @param {String} path in the form of `foo.bar.baz`
* @return {Boolean}
*/
L33teral.prototype.probe = function (path) {
var properties = path.split('.'),
value = this.obj,
index = -1,
lastIndex = properties.length - 1;
while (++index <= lastIndex) {
if (isNull(value) || isUndefined(value)) {
return false;
}
if (!value.hasOwnProperty(properties[index])) {
return false;
}
value = value[properties[index]];
}
return true;
};
/**
* Collects the values from multiple paths and puts them
* into an array in the order of evaluation. Uses `tap`
* to retrieve values. The `paths` parameter may be either
* an arbitrary number of strings, an array of paths, or an
* object literal where keys represent paths and values
* represent default values for each path should the object
* graph lack the specified path. If no default values are
* specified (e.g., `paths` is an arbitrary number of String
* parameters or an array), the value `undefined` will be
* used as a default value for paths that cannot be found.
* @param {...String|Array|Object} paths
* @return {Array}
*/
L33teral.prototype.collect = function (paths) {
var self = this;
var virginPaths = paths;
var hasDefaults = false;
if (isObject(paths) && !isArray(paths)) {
paths = Object.keys(paths);
hasDefaults = true;
}
if (!isArray(paths)) {
paths = Array.prototype.slice.call(arguments, 0);
}
var collection = [];
paths.forEach(function (path) {
var defaultValue = (hasDefaults ? virginPaths[path] : undefined);
try {
/*
* NOTE: not relying on the `defaultValue` behavior of
* `tap` because we will use `undefined` as a default
* value when one has not been supplied
*/
collection.push(self.tap(path));
} catch (e) {
if (e instanceof GraphError) {
return collection.push(defaultValue);
}
throw e;
}
});
return collection;
};
/**
* Collects the values from multiple paths and puts them into
* an object literal where the keys are the paths and the values
* are those found at each path in the original object literal.
* If no default values are specified (e.g., `paths` is an arbitrary
* number of String parameters or an array), the value `undefined`
* will be used as a default value for paths that cannot be found.
* @param {...String|Array|Object} paths
*/
L33teral.prototype.extract = function (paths) {
var values = this.collect.apply(this, arguments);
if (isObject(paths) && !isArray(paths)) {
paths = Object.keys(paths);
}
if (!isArray(paths)) {
paths = Array.prototype.slice.call(arguments, 0);
}
var i = 0,
length = paths.length,
hash = {};
for (i; i < length; i++) {
hash[paths[i]] = values[i];
}
return hash;
};
/**
* Counts the number of properties on the object
*/
L33teral.prototype.length = function () {
return Object.keys(this.obj).length;
};
/**
* Determines if the object has all specified properties
* @param {...String|Array} properties
* @return {Boolean}
*/
L33teral.prototype.hasAllProperties = function (properties) {
var self = this;
if (!isArray(properties)) {
properties = Array.prototype.slice.call(arguments, 0);
}
return properties.every(function (property) {
return self.obj.hasOwnProperty(property);
});
};
/**
* Determines if the object has any of the specified properties
* @param {...String|Array} properties
* @return {Boolean}
*/
L33teral.prototype.hasAnyProperties = function (properties) {
var self = this;
if (!isArray(properties)) {
properties = Array.prototype.slice.call(arguments, 0);
}
return properties.some(function (property) {
return self.obj.hasOwnProperty(property);
});
};
/**
* Determines if the object has all of the specified paths
* @param {...String|Array} paths
* @return {Boolean}
*/
L33teral.prototype.probeAll = function (paths) {
var self = this;
if (!isArray(paths)) {
paths = Array.prototype.slice.call(arguments, 0);
}
return paths.every(function (path) {
return self.probe(path);
});
};
/**
* Determines if the object has any of the specified paths
* @param {...String|Array} paths
* @return {*}
*/
L33teral.prototype.probeAny = function (paths) {
var self = this;
if (!isArray(paths)) {
paths = Array.prototype.slice.call(arguments, 0);
}
return paths.some(function (path) {
return self.probe(path);
});
};
/**
* Determines if the object has the path(s) specified, and if the
* value at path(s) is truthy.
* @param {...String|Array} paths
* @return {Boolean}
*/
L33teral.prototype.truthy = function (paths) {
var self = this;
if (!isArray(paths)) {
paths = Array.prototype.slice.call(arguments, 0);
}
return paths.every(function (path) {
return self.probe(path) && !!self.tap(path);
});
};
/**
* Plants a value at a path, creating the graph if it does not exist. All
* segments in the path are treated as object properties.
* @param {String} path
* @param {*} value
* @return
*/
L33teral.prototype.plant = function (path, value) {
if (!path) {
return;
}
var current = this.obj,
segments = path.split('.'),
position = 0,
length = segments.length,
segment;
var isMore = function () {
return position < length;
};
var isLast = function () {
return position === (length - 1);
};
while (isMore()) {
segment = segments[position];
if (!current.hasOwnProperty(segment) || isNull(current[segment])) {
current[segment] = {};
}
if (isLast()) {
current[segment] = value;
}
current = current[segment];
position += 1;
}
};
/**
* Deletes the key at the end of an object path.
* @param {String} path
* @param {Boolean} [suppressError] - prevent a {GraphError} from being thrown if
* any part of the path cannot be fully resolved
* @throws {GraphError}
*/
L33teral.prototype.snip = function (path, suppressError) {
if (!path) {
return;
}
var current = this.obj,
segments = path.split('.'),
position = 0,
length = segments.length,
segment;
var isMore = function () {
return position < length;
};
var isLast = function () {
return position === (length - 1);
};
while (isMore()) {
segment = segments[position];
if (isNull(current) || !current.hasOwnProperty(segment)) {
if (suppressError) {
return;
}
var e = new GraphError('snip', 'graph detection failed');
e.failedAt = segments.slice(0, position + 1).join('.');
throw e;
}
if (isLast()) {
delete current[segment];
}
current = current[segment];
position += 1;
}
};
/**
* Deletes the key at the end of an object path (like `snip`), and all keys
* along the path in reverse if they resolve to empty objects, e.g.: given
* the literal `{foo: {stop:1, bar: {baz: {} } } }`, baz and bar would be
* deleted given the path `foo.bar.baz`, but foo would remain with the
* property `stop` because foo is not "empty" (still has keys).
* @param {String} path
* @param {Boolean} [suppressError] - prevent a {GraphError} from being thrown if
* any part of the path cannot be fully resolved
* @throws {GraphError}
*/
L33teral.prototype.purge = function (path, suppressError) {
if (!path) {
return;
}
var current = this.obj,
segments = path.split('.'),
position = 0,
length = segments.length,
segment;
var isMore = function () {
return position < length;
};
var isLast = function () {
return position === (length - 1);
};
while (isMore()) {
segment = segments[position];
if (isNull(current) || !current.hasOwnProperty(segment)) {
if (suppressError) {
return;
}
var e = new GraphError('snip', 'graph detection failed');
e.failedAt = segments.slice(0, position + 1).join('.');
throw e;
}
if (isLast()) {
delete current[segment];
if (Object.getOwnPropertyNames(current).length === 0) {
segments.pop();
path = segments.join('.');
return this.purge(path, suppressError);
}
}
current = current[segment];
position += 1;
}
};
var exports = function (literal) {
return new L33teral(literal);
};
exports.GraphError = GraphError;
return exports;
}));