kedit v1.0.1
kedit
Uses one or more keys to locate and edit a value in a Map, Object, or other collection. Supports nesting, loose key matching, and more.
Installation
Requires Node.js 8.3.0 or above.
npm i keditAPI
The module exports an edit() function that has one other function attached to it as a method: edit.all().
edit()
Parameters
- Bindable:
collection(Array, Map, Object, Set, Typed Array, or WeakMap): The key-value collection with the value to be edited. keychain(any, or array of any): The key at which the value to be edited is located, or an array of nested keys. If the key or key chain does not exist, it will be created.cb(function): The callback which will edit the value. It will be given three arguments: the existing value (if present; otherwise thenotFoundargument orundefined), a boolean indicating whether or not an existing value was found, and acancelsymbol to be returned if no editing is desired. The callback is expected to return either the new value or thecancelsymbol.- Optional: Object argument:
arrays/maps/sets/weakMaps(arrays of classes/strings): Arrays of classes and/or string names of classes that should be treated as equivalent toArray/Map/Set/WeakMap(respectively).construct(function or false): A callback which constructs a new collection in the process of generating a nested key chain that does not already exist. The function is passed a zero-based numeric index indicating the level of nesting, and is expected to return a new collection object. To disable keychain construction altogether, set this tofalse.elseReturn(any): A value to return in the event that no edits were made. Only takes effect if noelseThrowis specified. Defaults toundefined.elseThrow(Error or string): An error to be thrown in the event that no edits were made. A string will be wrapped in anErrorobject automatically.getType(function): A callback which specifies the type of collection to be created in the process of generating a nested key chain that does not already exist. This callback is only used ifconstructis not set. The function is passed a zero-based numeric index indicating the level of nesting and is expected to return a class (Object,Array,Map, etc.) or the string name of a class ('Object','Array','Map', etc.). IfgetTypeis not specified, thetypesargument will be used if present.get(function): A callback which, if provided, will override the built-in code that fetches an individual key from a collection. Use this if you need to support collections whose custom APIs preclude the use of parameters likemaps. The callback will be called with five arguments: the collection, the key, the options object, the fallback to return if the key is not found, and a callback for the built-in get behavior (to which your customgetcallback can defer if it determines that it doesn’t need to override the default behavior after all).loose(boolean): Whether or not to evaluate keys loosely (as defined bylooselyEquals). Defaults tofalse.looselyEquals(function): A callback that accepts two values and returnstrueif they are to be considered equivalent orfalseotherwise. This argument is only used iflooseistrue. If omitted, the default behavior will, among other things, consider arrays/objects to be equal if they have the same entries.notFound(any): A value passed tocbin place of the existing value argument if no existing value is present. Defaults toundefined.overwriteAncestors(boolean): Whether or not to delete non-objects if necessary to resolve thekeychain. If set tofalse, then the module will throw an error ifkeychainreferences a non-collection. Only applies ifelseThrowis not set. Defaults tofalse.preferStrict(boolean): Only applies iflooseistrue. Iftrue, then strictly-identical keys will be preferred over loosely-equivalent keys. Otherwise, the first loosely-equivalent key found will be used, even if a strictly-identical one comes later. Defaults tofalse.reverse(boolean): Set totrueto edit the last matching key instead of the first one. Only applies iflooseistrue. Defaults tofalse.set(function): A callback which, if provided, will override the built-in code that sets the value of an individual key in a collection. Use this if you need to support collections whose custom APIs preclude the use of parameters likemaps. The callback will be called with five arguments: the collection, the key, the new value, the options object, and a callback for the built-in set behavior (to which your customsetcallback can defer if it determines that it doesn’t need to override the default behavior after all).typeortypes(function, string, or array of functions/strings): A class, or its string name, that should be used to construct new collections if a nested key chain does not already exist. To specify different collection types for each level of nesting, put the types into an array. Thetypesargument is used only ifconstructandgetTypeare not specified. If neither argument is specified, newly-created nested collections will be of the same type ascollection.
Return Values
- If no editing took place, returns
elseReturnif set, otherwiseundefined. - If editing was successful, returns the new value.
Examples
Arrays
const edit = require('kedit')
const arr = ['a', 'b', 'c']
edit(arr, 0, x => x.toUpperCase())
arr // ['A', 'b', 'c']Maps
const edit = require('kedit')
const map = new Map([['key', 'value']])
edit(map, 'key', x => x + '!')
map.get('key') // 'value!'
const nestedMap = new Map()
edit(nestedMap, ['key1', 'key2'], () => 'value')
nestedMap.get('key1').get('key2') // 'value'Objects
const edit = require('kedit')
const obj = {key1: {}}
edit(obj, ['key1', 'key2'], () => 'value') // 'value'
obj.key1.key2 // 'value'edit.all()
Use this method if you want to apply the same editor function to multiple keys.
Parameters
The parameters are the same as the main function, except that the second parameter is called keychains and accepts an array of keychain arguments.
Return Value
An array of return values corresponding to the array of keychains. Each element will be the new value if editing was successful, otherwise elseReturn or undefined.
Example
const edit = require('kedit')
const obj = {a: 1, b: 2, c: 3}
edit.all(obj, ['a', 'b'], n => n * 10) // [10, 20]
obj.a // 10
obj.b // 20
obj.c // 3Related
The “k” family of modules works on keyed/indexed collections.
The “v” family of modules works on any collection of values.