2.2.8 • Published 2 months ago

si-funciona v2.2.8

Weekly downloads
-
License
GPL-3.0-or-later
Repository
github
Last release
2 months ago

Sí, funciona

Funciones de utilidad para uso general. General usage utility functions.

Modules

siFunciona

All the siFunciona system functions for stringing together functions and simplifying logic.

Version: 1.0.0
Author: Joshua Heagle joshuaheagle@gmail.com

stringHelpers

Manage how strings are manipulated with these utilities.

Version: 1.0.0
Author: Joshua Heagle joshuaheagle@gmail.com

stringHelpers.words(str) ⇒ array

Split a string into sets of numbers or letters.

Kind: static method of stringHelpers

ParamType
strstring

stringHelpers.ucFirst(str) ⇒ string

Given a string, make the first character uppercase and the rest lowercase.

Kind: static method of stringHelpers

ParamType
strstring

stringHelpers.titleCase(str) ⇒ string

Given a string in kebab-case, snake_case, camelCase or 'Sentence case', convert to 'Title Case'.

Kind: static method of stringHelpers

ParamType
strstring

stringHelpers.strBeforeLast(str, search) ⇒ string

Retrieve the string part after the last search match.

Kind: static method of stringHelpers

ParamType
strstring
searchstring

stringHelpers.strBefore(str, search) ⇒ string

Retrieve the string part before the search match.

Kind: static method of stringHelpers

ParamType
strstring
searchstring

stringHelpers.strAfterLast(str, search) ⇒ string

Retrieve the string part after the last search match.

Kind: static method of stringHelpers

ParamType
strstring
searchstring

stringHelpers.strAfter(str, search) ⇒ string

Retrieve the string part after the search match.

Kind: static method of stringHelpers

ParamType
strstring
searchstring

stringHelpers.snakeCase(str) ⇒ string

Given a string in kebab-case, camelCase or 'Sentence case', convert to snake_case.

Kind: static method of stringHelpers

ParamType
strstring

stringHelpers.regexEscape(str) ⇒ string

Take a string and escape the regex characters.

Kind: static method of stringHelpers

ParamType
strstring

stringHelpers.makeRelativePath(fromFile, toFile) ⇒ string

Compare two file paths and simplify them to a relative path.

Kind: static method of stringHelpers

ParamType
fromFilestring
toFilestring

stringHelpers.makeFilepath(root, append) ⇒ string

Format the given path so that it does not have trailing slashes and also correctly appends a path.

Kind: static method of stringHelpers

ParamTypeDefault
rootstring
appendstring"''"

stringHelpers.kabobCase(str) ⇒ string

Given a string in snake_case, camelCase or 'Sentence case', convert to kabob-case.

Kind: static method of stringHelpers

ParamType
strstring

stringHelpers.camelCase(str) ⇒ string

Given a string in kebab-case, snake_case or 'Sentence case', convert to camelCase.

Kind: static method of stringHelpers

ParamType
strstring

objectHelpers

Simplify working with object by providing array-like parsing. Also, provides cloning and merging along with accessors that always have a return value for optimal nesting.

Version: 1.0.0
Author: Joshua Heagle joshuaheagle@gmail.com

objectHelpers.mergeObjectsMutable ⇒ *

Uses mergeObjectsBase deep merge objects and arrays, merge by reference.

Kind: static constant of objectHelpers
See: module:objectHelpers~mergeObjectsCallback

ParamTypeDescription
...objectsObjectProvide a list of objects which will be merged starting from the end up into the first

objectHelpers.mergeObjects ⇒ *

Uses mergeObjectsBase deep merge objects and arrays, merge by value.

Kind: static constant of objectHelpers
See: module:objectHelpers~mergeObjectsCallback

ParamTypeDescription
...objectsObjectProvide a list of objects which will be merged starting from the end up into the first

objectHelpers.setValue(key, value, item) ⇒ Object | Array

Set a value on an item, then return the item. NOTE: Argument order designed for usage with pipe

Kind: static method of objectHelpers

ParamTypeDescription
keystring | numberThe key on the item which will have its value set
value*Any value to be applied to the key
itemObject | ArrayAn object or array to be updated

objectHelpers.setAndReturnValue(item, key, value) ⇒ *

Set a value on an item, then return the value

Kind: static method of objectHelpers

ParamTypeDescription
itemObject | ArrayAn object or array to be updated
keystring | numberThe key on the item which will have its value set
value*Any value to be applied to the key

objectHelpers.reduceObject(obj, fn, initialValue) ⇒ *

This function is intended to replicate behaviour of the Array.reduce() function but for Objects. If an array is passed in instead then it will perform standard reduce(). It is recommended to always use the standard reduce() function when it is known that the object is actually an array.

Kind: static method of objectHelpers

ParamTypeDescription
objObject | ArrayThe Object (or Array) to be filtered
fnmodule:objectHelpers~reduceCallback | function | reduceCallbackThe function to be processed for each filtered property
initialValueObject | ArrayOptional. Value to use as the first argument to the first call of the callback. If no initial value is supplied, the first element in the array will be used. Calling reduce on an empty array without an initial value is an error.

objectHelpers.objectValues(object, includeInherited) ⇒ Array

Get an array of values from any object or array. Will return empty array when invalid or there are no values. Optional flag will include the inherited values from prototype chain when set.

Kind: static method of objectHelpers

ParamTypeDefault
objectObject | Array
includeInheritedbooleanfalse

objectHelpers.objectKeys(object, includeInherited) ⇒ Array.<(string|number)>

Get an array of keys from any object or array. Will return empty array when invalid or there are no keys. Optional flag will include the inherited keys from prototype chain when set.

Kind: static method of objectHelpers

ParamTypeDefault
objectObject | Array
includeInheritedbooleanfalse

objectHelpers.mergeObjectsBase(options) ⇒ module:objectHelpers~mergeObjectsCallback | mergeObjectsCallback

Perform a deep merge of objects. This will return a function that will combine all objects and sub-objects. Objects having the same attributes will overwrite from last object to first. NOTE: Use the mapLimit and relevancyRange to resolve "too much recursion" when the object is large and is known to have circular references. A high mapLimit may lead to heavy memory usage and slow performance.

Kind: static method of objectHelpers

ParamTypeDefaultDescription
optionsObject{}
options.mapLimitnumber100Size of temporary reference array used in memory before assessing relevancy.
options.depthLimitnumber-1Control how many nested levels deep will be used, -1 = no limit, >-1 = nth level limited.
options.relevancyRangenumber1000Total reference map length subtract this range, any relevancy less than that amount at time of evaluation will be removed.
options.mapIterable | array[]A predetermined list of references gathered (to be passed to itself during recursion).
options.useClonebooleanfalse

objectHelpers.mapObject(obj, fn, thisArg) ⇒ Object | Array

This function is intended to replicate behaviour of the Array.map() function but for Objects. If an array is passed in instead then it will perform standard map(). It is recommended to always use the standard map() function when it is known that the object is actually an array.

Kind: static method of objectHelpers

ParamTypeDescription
objObject | ArrayThe Object (or Array) to be mapped
fnmodule:objectHelpers~mapCallback | functionThe function to be processed for each mapped property
thisArgObject | ArrayOptional. Value to use as this when executing callback.

objectHelpers.isObject(object) ⇒ boolean

Check if the provided thing is an object / array.

Kind: static method of objectHelpers

ParamType
object*

objectHelpers.isInstanceObject(object) ⇒ boolean

Check if the current object has inherited properties.

Kind: static method of objectHelpers

ParamType
objectObject | Array

objectHelpers.isCloneable(value) ⇒ boolean

Determine if the value is a reference instance

Kind: static method of objectHelpers

ParamType
valueArray | Object | *

objectHelpers.filterObject(obj, fn, thisArg) ⇒ Object | Array

This function is intended to replicate behaviour of the Array.filter() function but for Objects. If an array is passed in instead then it will perform standard filter(). It is recommended to always use the standard filter() function when it is known that the object is actually an array.

Kind: static method of objectHelpers

ParamTypeDescription
objObject | ArrayThe Object (or Array) to be filtered
fnmodule:objectHelpers~filterCallback | functionThe function to be processed for each filtered property
thisArgObject | ArrayOptional. Value to use as this when executing callback.

objectHelpers.emptyObject(item) ⇒ boolean

Helper function for testing if the item is an Object or Array that does not have any properties

Kind: static method of objectHelpers

ParamTypeDescription
itemObject | ArrayObject or Array to test

objectHelpers.dotUnset(arrayObject, dotNotation) ⇒ Object

Unset a nested property value an object.

Kind: static method of objectHelpers
Returns: Object - The modified object

ParamTypeDescription
arrayObjectObjectThe array or object to set the property on
dotNotationstringThe path for the property

objectHelpers.dotSet(arrayObject, dotNotation, value) ⇒ Object

Set a nested property value an object.

Kind: static method of objectHelpers
Returns: Object - The modified object

ParamTypeDescription
arrayObjectObjectThe array or object to set the property on
dotNotationstringThe path for the property
value*The default value to return if the property is not found

objectHelpers.dotNotate(arrayObject, retainObjects) ⇒ DotNotatedObject

Convert an array or object to a single dimensional associative array with dot notation.

Kind: static method of objectHelpers
Returns: DotNotatedObject - The dot-notated object

ParamTypeDefaultDescription
arrayObjectObjectThe array or object to dot-notate
retainObjectsArray.<DotNotationString>[]An array of keys to retain as objects

objectHelpers.dotGet(arrayObject, dotNotation, defaultValue) ⇒ *

Get a nested property value from an object.

Kind: static method of objectHelpers
Returns: * - The value of the property

ParamTypeDefaultDescription
arrayObjectObjectThe array or object to get the property from
dotNotationstringThe path to the property
defaultValuestring | nullnullThe default value to return if the property is not found

objectHelpers.cloneObject(object, options) ⇒ Object

Clone objects for manipulation without data corruption, returns a copy of the provided object. NOTE: Use the mapLimit and relevancyRange to resolve "too much recursion" when the object is large and is known to have circular references. A high mapLimit may lead to heavy memory usage and slow performance.

Kind: static method of objectHelpers

ParamTypeDefaultDescription
objectObjectThe original object that is being cloned
optionsObject{}
options.mapLimitnumber100Size of temporary reference array used in memory before assessing relevancy.
options.depthLimitnumber-1Control how many nested levels deep will be used, -1 = no limit, >-1 = nth level limited.
options.relevancyRangenumber1000Total reference map length subtract this range, any relevancy less than that amount at time of evaluation will be removed.

objectHelpers~handleRetainObjects(retainObjects) ⇒ function

Convert an array of keys into a regex, return a function to test if incoming keys match.

Kind: inner method of objectHelpers
Returns: function - The dot-notated array

ParamTypeDefaultDescription
retainObjectsArray.<DotNotationString>[]An array of keys to retain as objects

objectHelpers~performDotNotate(arrayObject, didRetain, prepend, results) ⇒ DotNotatedObject

The underlying logic function for converting arrays to dot-notation.

Kind: inner method of objectHelpers
Returns: DotNotatedObject - The dot-notated object

ParamTypeDefaultDescription
arrayObjectObjectThe array or object to dot-notate
didRetainfunctionThe test function to see if a key should be retained
prependDotNotationString''The path for the property being processed
resultsDotNotatedObject{}The final array to return

numberHelpers

Some number comparators and random number generators.

Version: 1.0.0
Author: Joshua Heagle joshuaheagle@gmail.com

numberHelpers.randomNumber(range, offset, interval) ⇒ number

Create a single random number within provided range. And with optional offset, The distance between the result numbers can be adjusted with interval.

Kind: static method of numberHelpers

ParamTypeDefaultDescription
rangenumberChoose the breadth of the random number (0-100 would be 100 for range)
offsetnumber0Choose the starting number (1-10 would be 1 for offset, 9 for range)
intervalnumber1Choose the distance between numbers (~5, ~10, ~15 would be 5 for interval, 1 for offset, 2 for range)

numberHelpers.randomInteger(range, offset, interval) ⇒ number

Create a single random integer within provide range. And with optional offset, The distance between the result numbers can be adjusted with interval.

Kind: static method of numberHelpers

ParamTypeDefaultDescription
rangenumberChoose the breadth of the random number (0-100 would be 100 for range)
offsetnumber0Choose the starting number (1-10 would be 1 for offset, 9 for range)
intervalnumber1Choose the distance between numbers (5, 10, 15 would be 5 for interval, 1 for offset, 2 for range)

numberHelpers.compare(val1, val2) ⇒ number

Compare two numbers and return: -1 to indicate val1 is less than val2 0 to indicate both values are the equal 1 to indicate val1 is greater than val2

Kind: static method of numberHelpers

ParamTypeDescription
val1numberThe first number to compare
val2numberThe second number to compare

numberHelpers.absoluteMin(num1, num2) ⇒ number

Helper for returning the absolute min value

Kind: static method of numberHelpers

ParamTypeDescription
num1numberA number to compare
num2numberAnother number to be compared against

numberHelpers.absoluteMax(num1, num2) ⇒ number

Helper for returning the absolute max value

Kind: static method of numberHelpers

ParamTypeDescription
num1numberA number to compare
num2numberAnother number to be compared against

functionHelpers

Manage how functions are called with these utilities.

Version: 1.0.0
Author: Joshua Heagle joshuaheagle@gmail.com

functionHelpers.trace(label, useClone) ⇒ function

Output the value with label to the console and return the value to not interrupt the code.

Kind: static method of functionHelpers

ParamTypeDescription
labelstringPass an identifying label of the value being output.
useCloneDetermines if the logged data should be a clone of the original to preserve state.

functionHelpers.relevancyFilter(map, options) ⇒ relevanceMap

Remove elements out of relevance range and update the max relevance.

Kind: static method of functionHelpers

ParamTypeDefault
maprelevanceMap
optionsObject{}
options.mapLimitint1000
options.relevancyRangeint100

functionHelpers.queueTimeout(queueManagerHandle) ⇒ module:functionHelpers~queueTimeoutHandle

Manage functions to run sequentially with delays.

Kind: static method of functionHelpers

ParamTypeDefault
queueManagerHandlemodule:functionHelpers~queueManagerHandle

functionHelpers.queueManager(queue) ⇒ module:functionHelpers~queueManagerHandle

Manage functions to run sequentially.

Kind: static method of functionHelpers

ParamTypeDefaultDescription
queueIsQueue[]The iterable that can be used to store queued functions

queueManager~makeQueuedRunnable(resolve, reject, fn, ...args) ⇒ queuedRunnable

Convert a function to a queueable object.

Kind: inner method of queueManager

ParamType
resolvePromise.resolve
rejectPromise.reject
fnfunction
...args*

queueManager~postRun(result) ⇒ *

After an item is run, THEN run this function to reset isRunning

Kind: inner method of queueManager

ParamType
result*

queueManager~runNextItem() ⇒ IteratorYieldResult | null

When ready, runs the next queued runnable generator.

Kind: inner method of queueManager

queueManager~pushAnother(fn, ...args) ⇒

Add a function into the queue to be run when ready.

Kind: inner method of queueManager
Returns: Promise

ParamTypeDescription
fnfunctionThe function to run when ready
...args*Optional arguments to apply when the function is ready to be run

functionHelpers.preloadParams(fn, params, unassignedParam) ⇒ module:functionHelpers~callWithMissing

Provide an array of parameters to be used with a function, allow the function to be called later with the missing parameter.

Kind: static method of functionHelpers

ParamTypeDefaultDescription
fnfunctionThe function to be called
paramsArrayThe parameters to preload
unassignedParamnumber0Position of missing parameter (zero indexed)

functionHelpers.pipe(...fns) ⇒ *

Take one or more function with a single parameter and return value. Pass a parameter and the value will be transformed by each function then returned.

Kind: static method of functionHelpers

ParamTypeDescription
...fnsfunctionTakes a series of functions having the same parameter

functionHelpers.onBodyLoad(callback, reset) ⇒ Array.<function()>

Prepare functions to be called once the body is available.

Kind: static method of functionHelpers

ParamTypeDefault
callbackfunction
resetbooleanfalse

functionHelpers.makeBasicQueue(initialQueue) ⇒ IsQueue

Create an instance of a basic queue.

Kind: static method of functionHelpers

ParamType
initialQueueArray

functionHelpers.delay(time) ⇒ module:functionHelpers~delayHandler

Provide a timeout which returns a promise.

Kind: static method of functionHelpers

ParamTypeDescription
timenumberDelay in milliseconds

functionHelpers.curry(fn) ⇒ function | *

Return a curried version of the passed function. The returned function expects the same number of arguments minus the ones provided. fn is the name of the function being curried.

Kind: static method of functionHelpers

ParamTypeDescription
fnfunctionReceives a function to be curried

functionHelpers.callWithParams(fn, params, minimum) ⇒ *

Given a function, call with the correct number of parameters from an array of possible parameters.

Kind: static method of functionHelpers

ParamTypeDefaultDescription
fnfunctionThe function to be called
paramsArrayArray of possible function parameters
minimumnumber2Minimum number of parameters to use in the function

objectDescriptors

Create a format to standardize every object into a specific template.

Version: 1.0.0
Author: Joshua Heagle joshuaheagle@gmail.com

objectDescriptors.mappedDescriptorMap : module:objectDescriptors~descriptorMap

Kind: static constant of objectDescriptors

objectDescriptors.descriptorMapSample : module:objectDescriptors~descriptorMap

Kind: static constant of objectDescriptors

objectDescriptors.descriptorDetailSample : module:objectDescriptors~descriptorDetail

Kind: static constant of objectDescriptors

objectDescriptors.descriptorSample : module:objectDescriptors~descriptor

Kind: static constant of objectDescriptors

objectDescriptors.sameDescriptor(descriptor1, descriptor2) ⇒ boolean

Check if the two descriptors are the same.

Kind: static method of objectDescriptors

ParamType
descriptor1module:objectDescriptors~descriptor
descriptor2module:objectDescriptors~descriptor

objectDescriptors.nextReference(descriptor, currentReference) ⇒ number | undefined

Find the index of the next module:objectDescriptors.descriptorDetail to build a resource for.

Kind: static method of objectDescriptors

ParamType
descriptormodule:objectDescriptors~descriptor
currentReferencenumber

objectDescriptors.describeObjectMap(object, options) ⇒ module:objectDescriptors~descriptorMap

Trace out the entire object including nested objects.

Kind: static method of objectDescriptors

ParamTypeDefault
objectObject | Array
optionsObject{}
options.mapLimitnumber1000000000
options.depthLimitnumber-1
options.keepValuesbooleanfalse

objectDescriptors.describeObjectDetail(value, key, index) ⇒ module:objectDescriptors~descriptorDetail

Trace an object's attribute and provide details about it.

Kind: static method of objectDescriptors

ParamTypeDefault
value*
keystring | number0
indexnumber0

objectDescriptors.describeObject(object) ⇒ module:objectDescriptors~descriptor

Trace an object and return the descriptor which defines the object's structure and attributes.

Kind: static method of objectDescriptors

ParamType
objectObject

objectDescriptors.compareDescriptor(descriptor1, descriptor2) ⇒ boolean

Check if two descriptors are the same or similar in that they have similar keys and the associated types are the same.

Kind: static method of objectDescriptors

ParamType
descriptor1module:objectDescriptors~descriptor
descriptor2module:objectDescriptors~descriptor

objectDescriptors.cloneDescriptorDetail(originalDetail) ⇒ module:objectDescriptors~descriptorDetail

Get a new copy of an existing Descriptor Detail

Kind: static method of objectDescriptors

ParamType
originalDetailmodule:objectDescriptors~descriptorDetail

objectDescriptors.cloneDescriptor(originalMap) ⇒ module:objectDescriptors~descriptor

Make a copy of an object descriptor so that the original will not be mutated.

Kind: static method of objectDescriptors

ParamType
originalMapmodule:objectDescriptors~descriptor

objectDescriptors.checkDescriptorComplete(descriptor) ⇒ module:objectDescriptors~descriptor

Check if the descriptors references have all been built and set complete to true if they have.

Kind: static method of objectDescriptors

ParamType
descriptormodule:objectDescriptors~descriptor

objectDescriptors.checkClearValues(descriptor, keepValues) ⇒ module:objectDescriptors~descriptor

Check if we should clear the values on this descriptor

Kind: static method of objectDescriptors

ParamTypeDefault
descriptormodule:objectDescriptors~descriptor
keepValuesbooleanfalse

objectDescriptors.assignDescriptorDetail(originalDetail, ...details) ⇒ module:objectDescriptors~descriptorDetail

Assign properties from other details onto an existing detail.

Kind: static method of objectDescriptors

ParamType
originalDetailmodule:objectDescriptors~descriptorDetail
...detailsmodule:objectDescriptors~descriptorDetail

objectDescriptors.assignDescriptor(originalMap, ...descriptors) ⇒ module:objectDescriptors~descriptor

Apply one or more descriptors to an existing descriptor so that they represent a merged version of the descriptors.

Kind: static method of objectDescriptors

ParamType
originalMapmodule:objectDescriptors~descriptor
...descriptorsmodule:objectDescriptors~descriptor

arrayHelpers

Some simple utility functions for generating arrays or performing work on arrays.

Version: 1.0.0
Author: Joshua Heagle joshuaheagle@gmail.com

arrayHelpers.BasicQueue

Class BasicQueue is a functional example of a queue to be used with queueManager.

Kind: static class of arrayHelpers

basicQueue.dequeue() ⇒ queuedItem | *

Remove and return the next item in the queue

Kind: instance method of BasicQueue

basicQueue.empty() ⇒ boolean

Check if the queue is empty

Kind: instance method of BasicQueue

basicQueue.enqueue(data) ⇒ BasicQueue

Add an item to the end of the queue

Kind: instance method of BasicQueue

ParamType
dataqueuedItem | *

basicQueue.peek() ⇒ queuedItem | *

Retrieve the next item from the queue

Kind: instance method of BasicQueue

basicQueue.size() ⇒ number

Get the quantity of items in the queue

Kind: instance method of BasicQueue

arrayHelpers.uniqueArray(array) ⇒ Array

Remove duplicate values from an array. uniqueArray

Kind: static method of arrayHelpers

ParamTypeDescription
arrayArrayThe array to make unique

arrayHelpers.mergeArrays(...arrays) ⇒ Array

Take multiple arrays and then filter all these into one unique array.

Kind: static method of arrayHelpers

ParamTypeDescription
...arraysArrayProvide multiple arrays to create one unique array

arrayHelpers.compareArrays(...arrays) ⇒ Array.<module:arrayHelpers~compareArrayResult>

Compare two Arrays and return the Object where the value for each property is as follows: -1 to indicate val1 is less than val2 0 to indicate both values are the equal 1 to indicate val1 is greater than val2 The returned Object uses the element values as the property names This functions works by first creating a concatenated array of all unique values. Then for each unique values, convert to a string and use it as a new property name. Array filter each array checking if it has the unique value. Use the lengths of these filtered arrays to compare. So if the first array has the value and the second one doesn't the first length will be one or more and the second will be zero, if the both have the value then both will be one or more.

Kind: static method of arrayHelpers

ParamTypeDescription
...arraysArrayThe arrays to compare

Example

// example of input and resulting output
compareArrays(
  ['match1', 'firstMismatch1', 'match2', 'firstMismatch2', 'badMatch1'],
  ['match1', 'match2', 'secondMismatch1', 'badMatch1', 'badMatch1']
)
// unique array
['match1', 'firstMismatch1', 'match2', 'firstMismatch2', 'badMatch1', 'secondMismatch1']
// result object
[
  {
    value: 'match1',
    keys: [[0], [0]],
    result: [0, 0]
  },
  {
    value: 'firstMismatch1',
    keys: [[1], []],
    result: [1, -1]
  },
  {
    value: 'match2',
    keys: [[2], [1]],
    result: [0, 0]
  },
  {
    value: 'firstMismatch2',
    keys: [[3], []],
    result: [1, -1]
  },
  {
    value: 'badMatch1',
    keys: [[4], [3, 4]],
    result: [0, 0]
  },
  {
    value: 'secondMismatch1',
    keys: [[], [2]],
    result: [-1, 1]
  }
]

arrayHelpers.buildArrayOfReferences(item, length) ⇒ Array.<*>

Leverage buildArrayBase to generate an array filled with references to the provided item. The length defines how long the array should be.

Kind: static method of arrayHelpers

ParamTypeDescription
item*The item to be used for each array element
lengthnumberThe desired length of the array

arrayHelpers.buildArray(item, length) ⇒ Array.<*>

Leverage buildArrayBase to generate an array filled with a copy of the provided item. The length defines how long the array should be.

Kind: static method of arrayHelpers

ParamTypeDescription
item*The item to be used for each array element
lengthnumberThe desired length of the array

arrayHelpers.addUniqueToArray(item, array) ⇒ Array

Having an array and a potential new array element, check if the element is in the array, if not append to array.

Kind: static method of arrayHelpers

ParamTypeDescription
item*An potential array element, possibly a DomItem
arrayArrayAn array where an element may be appended.
2.2.8

2 months ago

2.2.7

2 months ago

2.2.6

3 months ago

2.2.5

3 months ago

2.2.4

3 months ago

2.2.3

5 months ago

2.2.2

5 months ago

2.2.0

5 months ago

2.1.0

6 months ago

2.0.3

8 months ago

2.0.4

7 months ago

1.2.0

9 months ago

1.1.1

12 months ago

2.0.2

8 months ago

2.0.1

8 months ago

2.0.0

8 months ago

1.1.0

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago