@w33bletools/simpleutils

simple utilities, no dependencies

Usage no npm install needed!

<script type="module">
  import w33bletoolsSimpleutils from 'https://cdn.skypack.dev/@w33bletools/simpleutils';
</script>

README

simpleutils

Build Status

simple utilities, no dependencies

Usage

isArray(value)

Returns true or false, depending on the value being an array

isPlainObject(value)

Returns true or false, depending on the value being a plain object

isFunction(value)

Returns true or false, depending on the value being a function

isString(value)

Returns true or false, depending on the value being an string

isSymbol(value)

Returns true or false, depending on the value being a symbol

identity(value)

Returns function the value passed in as the first argument

pick(obj, fields)

Given an object and array of fields, returns an object containing all the keys in the fields array

omit(obj, fields)

Given an object and array of fields, returns an object missing all the keys in the fields array