mirror of
https://github.com/LukeHagar/arbiter.git
synced 2025-12-06 20:37:49 +00:00
Saving all progress
This commit is contained in:
11
node_modules/json-stringify-deterministic/lib/util.js
generated
vendored
Normal file
11
node_modules/json-stringify-deterministic/lib/util.js
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
'use strict'
|
||||
|
||||
module.exports = {
|
||||
isArray: Array.isArray,
|
||||
assign: Object.assign,
|
||||
isObject: v => typeof v === 'object',
|
||||
isFunction: v => typeof v === 'function',
|
||||
isBoolean: v => typeof v === 'boolean',
|
||||
isRegex: v => v instanceof RegExp,
|
||||
keys: Object.keys
|
||||
}
|
||||
Reference in New Issue
Block a user