mirror of
https://github.com/LukeHagar/arbiter.git
synced 2025-12-06 12:27:48 +00:00
12 lines
269 B
JavaScript
12 lines
269 B
JavaScript
'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
|
|
}
|