A comprehensive library for javascript array operations and manipulation.
npm install array-ops
var arrayOps = require('array-ops')
var array = new array_ops()
array.isArray([1,2,3]) // true
Returns true if the passed value is an array.
array.isArray([1,2,3]) // true
array.isArray(1) // false
Returns true if all the elements of the array are numbers (Intergers or Decimal).
array.isNumericArray([1,2,3]) // true
array.isNumericArray([1,2,4.6]) // true
array.isNumericArray([1,'r',8) // false
Returns true if all the elements of the array are integers.
array.isIntegerArray([1,2,3]) // true
array.isIntegerArray([1,2,4.6]) // false
Returns true if all the elements of the array are decimals.
array.isDecimalArray([24.3,82.6]) // true
array.isDecimalArray([1,2,3]) // false
Returns true if all the elements of the array are strings.
array.isStringArray(['foo','bar']) // true
array.isStringArray(['1','2','3']) // true
array.isStringArray([1,34]) // false
Returns true if the array is empty.
array.isStringArray([]) // true
array.isStringArray([1]) // false