• Stars
    star
    162
  • Rank 232,284 (Top 5 %)
  • Language
    JavaScript
  • License
    ISC License
  • Created over 13 years ago
  • Updated over 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

ECMAScript extensions (with respect to upcoming ECMAScript features)

Build status Tests coverage npm version

es5-ext

ECMAScript 5 extensions

(with respect to ECMAScript 6 standard)

Shims for upcoming ES6 standard and other goodies implemented strictly with ECMAScript conventions in mind.

It's designed to be used in compliant ECMAScript 5 or ECMAScript 6 environments. Older environments are not supported, although most of the features should work with correct ECMAScript 5 shim on board.

When used in ECMAScript 6 environment, native implementation (if valid) takes precedence over shims.

Installation

npm install es5-ext

To port it to Browser or any other (non CJS) environment, use your favorite CJS bundler. No favorite yet? Try: Browserify, Webmake or Webpack

Usage

ECMAScript 6 features

You can force ES6 features to be implemented in your environment, e.g. following will assign from function to Array (only if it's not implemented already).

require("es5-ext/array/from/implement");
Array.from("foo"); // ['f', 'o', 'o']

You can also access shims directly, without fixing native objects. Following will return native Array.from if it's available and fallback to shim if it's not.

var aFrom = require("es5-ext/array/from");
aFrom("foo"); // ['f', 'o', 'o']

If you want to use shim unconditionally (even if native implementation exists) do:

var aFrom = require("es5-ext/array/from/shim");
aFrom("foo"); // ['f', 'o', 'o']
List of ES6 shims

It's about properties introduced with ES6 and those that have been updated in new spec.

  • Array.from -> require('es5-ext/array/from')
  • Array.of -> require('es5-ext/array/of')
  • Array.prototype.concat -> require('es5-ext/array/#/concat')
  • Array.prototype.copyWithin -> require('es5-ext/array/#/copy-within')
  • Array.prototype.entries -> require('es5-ext/array/#/entries')
  • Array.prototype.fill -> require('es5-ext/array/#/fill')
  • Array.prototype.filter -> require('es5-ext/array/#/filter')
  • Array.prototype.find -> require('es5-ext/array/#/find')
  • Array.prototype.findIndex -> require('es5-ext/array/#/find-index')
  • Array.prototype.keys -> require('es5-ext/array/#/keys')
  • Array.prototype.map -> require('es5-ext/array/#/map')
  • Array.prototype.slice -> require('es5-ext/array/#/slice')
  • Array.prototype.splice -> require('es5-ext/array/#/splice')
  • Array.prototype.values -> require('es5-ext/array/#/values')
  • Array.prototype[@@iterator] -> require('es5-ext/array/#/@@iterator')
  • Math.acosh -> require('es5-ext/math/acosh')
  • Math.asinh -> require('es5-ext/math/asinh')
  • Math.atanh -> require('es5-ext/math/atanh')
  • Math.cbrt -> require('es5-ext/math/cbrt')
  • Math.clz32 -> require('es5-ext/math/clz32')
  • Math.cosh -> require('es5-ext/math/cosh')
  • Math.exmp1 -> require('es5-ext/math/expm1')
  • Math.fround -> require('es5-ext/math/fround')
  • Math.hypot -> require('es5-ext/math/hypot')
  • Math.imul -> require('es5-ext/math/imul')
  • Math.log1p -> require('es5-ext/math/log1p')
  • Math.log2 -> require('es5-ext/math/log2')
  • Math.log10 -> require('es5-ext/math/log10')
  • Math.sign -> require('es5-ext/math/sign')
  • Math.signh -> require('es5-ext/math/signh')
  • Math.tanh -> require('es5-ext/math/tanh')
  • Math.trunc -> require('es5-ext/math/trunc')
  • Number.EPSILON -> require('es5-ext/number/epsilon')
  • Number.MAX_SAFE_INTEGER -> require('es5-ext/number/max-safe-integer')
  • Number.MIN_SAFE_INTEGER -> require('es5-ext/number/min-safe-integer')
  • Number.isFinite -> require('es5-ext/number/is-finite')
  • Number.isInteger -> require('es5-ext/number/is-integer')
  • Number.isNaN -> require('es5-ext/number/is-nan')
  • Number.isSafeInteger -> require('es5-ext/number/is-safe-integer')
  • Object.assign -> require('es5-ext/object/assign')
  • Object.keys -> require('es5-ext/object/keys')
  • Object.setPrototypeOf -> require('es5-ext/object/set-prototype-of')
  • Promise.prototype.finally -> require('es5-ext/promise/#/finally')
  • RegExp.prototype.match -> require('es5-ext/reg-exp/#/match')
  • RegExp.prototype.replace -> require('es5-ext/reg-exp/#/replace')
  • RegExp.prototype.search -> require('es5-ext/reg-exp/#/search')
  • RegExp.prototype.split -> require('es5-ext/reg-exp/#/split')
  • RegExp.prototype.sticky -> Implement with require('es5-ext/reg-exp/#/sticky/implement'), use as function with require('es5-ext/reg-exp/#/is-sticky')
  • RegExp.prototype.unicode -> Implement with require('es5-ext/reg-exp/#/unicode/implement'), use as function with require('es5-ext/reg-exp/#/is-unicode')
  • String.fromCodePoint -> require('es5-ext/string/from-code-point')
  • String.raw -> require('es5-ext/string/raw')
  • String.prototype.codePointAt -> require('es5-ext/string/#/code-point-at')
  • String.prototype.contains -> require('es5-ext/string/#/contains')
  • String.prototype.endsWith -> require('es5-ext/string/#/ends-with')
  • String.prototype.normalize -> require('es5-ext/string/#/normalize')
  • String.prototype.repeat -> require('es5-ext/string/#/repeat')
  • String.prototype.startsWith -> require('es5-ext/string/#/starts-with')
  • String.prototype[@@iterator] -> require('es5-ext/string/#/@@iterator')

Non ECMAScript standard features

es5-ext provides also other utils, and implements them as if they were proposed for a standard. It mostly offers methods (not functions) which can directly be assigned to native prototypes:

Object.defineProperty(Function.prototype, "partial", {
  value: require("es5-ext/function/#/partial"),
  configurable: true,
  enumerable: false,
  writable: true
});
Object.defineProperty(Array.prototype, "flatten", {
  value: require("es5-ext/array/#/flatten"),
  configurable: true,
  enumerable: false,
  writable: true
});
Object.defineProperty(String.prototype, "capitalize", {
  value: require("es5-ext/string/#/capitalize"),
  configurable: true,
  enumerable: false,
  writable: true
});

See es5-extend, a great utility that automatically will extend natives for you.

Important: Remember to not extend natives in scope of generic reusable packages (e.g. ones you intend to publish to npm). Extending natives is fine only if you're the owner of the global scope, so e.g. in final project you lead development of.

When you're in situation when native extensions are not good idea, then you should use methods indirectly:

var flatten = require("es5-ext/array/#/flatten");

flatten.call([1, [2, [3, 4]]]); // [1, 2, 3, 4]

for better convenience you can turn methods into functions:

var call = Function.prototype.call;
var flatten = call.bind(require("es5-ext/array/#/flatten"));

flatten([1, [2, [3, 4]]]); // [1, 2, 3, 4]

You can configure custom toolkit (like underscorejs), and use it throughout your application

var util = {};
util.partial = call.bind(require("es5-ext/function/#/partial"));
util.flatten = call.bind(require("es5-ext/array/#/flatten"));
util.startsWith = call.bind(require("es5-ext/string/#/starts-with"));

util.flatten([1, [2, [3, 4]]]); // [1, 2, 3, 4]

As with native ones most methods are generic and can be run on any type of object.

API

Global extensions

global (es5-ext/global)

Object that represents global scope

Array Constructor extensions

from(arrayLike[, mapFn[, thisArg]]) (es5-ext/array/from)

Introduced with ECMAScript 6. Returns array representation of iterable or arrayLike. If arrayLike is an instance of array, its copy is returned.

generate([length[, โ€ฆfill]]) (es5-ext/array/generate)

Generate an array of pre-given length built of repeated arguments.

isPlainArray(x) (es5-ext/array/is-plain-array)

Returns true if object is plain array (not instance of one of the Array's extensions).

of([โ€ฆitems]) (es5-ext/array/of)

Introduced with ECMAScript 6. Create an array from given arguments.

toArray(obj) (es5-ext/array/to-array)

Returns array representation of obj. If obj is already an array, obj is returned back.

validArray(obj) (es5-ext/array/valid-array)

Returns obj if it's an array, otherwise throws TypeError

Array Prototype extensions

arr.binarySearch(compareFn) (es5-ext/array/#/binary-search)

In sorted list search for index of item for which compareFn returns value closest to 0. It's variant of binary search algorithm

arr.clear() (es5-ext/array/#/clear)

Clears the array

arr.compact() (es5-ext/array/#/compact)

Returns a copy of the context with all non-values (null or undefined) removed.

arr.concat() (es5-ext/array/#/concat)

Updated with ECMAScript 6. ES6's version of concat. Supports isConcatSpreadable symbol, and returns array of same type as the context.

arr.contains(searchElement[, position]) (es5-ext/array/#/contains)

Whether list contains the given value.

arr.copyWithin(target, start[, end]) (es5-ext/array/#/copy-within)

Introduced with ECMAScript 6.

arr.diff(other) (es5-ext/array/#/diff)

Returns the array of elements that are present in context list but not present in other list.

arr.eIndexOf(searchElement[, fromIndex]) (es5-ext/array/#/e-index-of)

egal version of indexOf method. SameValueZero logic is used for comparision

arr.eLastIndexOf(searchElement[, fromIndex]) (es5-ext/array/#/e-last-index-of)

egal version of lastIndexOf method. SameValueZero logic is used for comparision

arr.entries() (es5-ext/array/#/entries)

Introduced with ECMAScript 6. Returns iterator object, which traverses the array. Each value is represented with an array, where first value is an index and second is corresponding to index value.

arr.exclusion([โ€ฆlists]]) (es5-ext/array/#/exclusion)

Returns the array of elements that are found only in one of the lists (either context list or list provided in arguments).

arr.fill(value[, start, end]) (es5-ext/array/#/fill)

Introduced with ECMAScript 6.

arr.filter(callback[, thisArg]) (es5-ext/array/#/filter)

Updated with ECMAScript 6. ES6's version of filter, returns array of same type as the context.

arr.find(predicate[, thisArg]) (es5-ext/array/#/find)

Introduced with ECMAScript 6. Return first element for which given function returns true

arr.findIndex(predicate[, thisArg]) (es5-ext/array/#/find-index)

Introduced with ECMAScript 6. Return first index for which given function returns true

arr.first() (es5-ext/array/#/first)

Returns value for first defined index

arr.firstIndex() (es5-ext/array/#/first-index)

Returns first declared index of the array

arr.flatten() (es5-ext/array/#/flatten)

Returns flattened version of the array

arr.forEachRight(cb[, thisArg]) (es5-ext/array/#/for-each-right)

forEach starting from last element

arr.group(cb[, thisArg]) (es5-ext/array/#/group)

Group list elements by value returned by cb function

arr.indexesOf(searchElement[, fromIndex]) (es5-ext/array/#/indexes-of)

Returns array of all indexes of given value

arr.intersection([โ€ฆlists]) (es5-ext/array/#/intersection)

Computes the array of values that are the intersection of all lists (context list and lists given in arguments)

arr.isCopy(other) (es5-ext/array/#/is-copy)

Returns true if both context and other lists have same content

arr.isUniq() (es5-ext/array/#/is-uniq)

Returns true if all values in array are unique

arr.keys() (es5-ext/array/#/keys)

Introduced with ECMAScript 6. Returns iterator object, which traverses all array indexes.

arr.last() (es5-ext/array/#/last)

Returns value of last defined index

arr.lastIndex() (es5-ext/array/#/last)

Returns last defined index of the array

arr.map(callback[, thisArg]) (es5-ext/array/#/map)

Updated with ECMAScript 6. ES6's version of map, returns array of same type as the context.

arr.remove(value[, โ€ฆvaluen]) (es5-ext/array/#/remove)

Remove values from the array

arr.separate(sep) (es5-ext/array/#/separate)

Returns array with items separated with sep value

arr.slice(callback[, thisArg]) (es5-ext/array/#/slice)

Updated with ECMAScript 6. ES6's version of slice, returns array of same type as the context.

arr.someRight(cb[, thisArg]) (es5-ext/array/#/someRight)

some starting from last element

arr.splice(callback[, thisArg]) (es5-ext/array/#/splice)

Updated with ECMAScript 6. ES6's version of splice, returns array of same type as the context.

arr.uniq() (es5-ext/array/#/uniq)

Returns duplicate-free version of the array

arr.values() (es5-ext/array/#/values)

Introduced with ECMAScript 6. Returns iterator object which traverses all array values.

arr[@@iterator] (es5-ext/array/#/@@iterator)

Introduced with ECMAScript 6. Returns iterator object which traverses all array values.

Boolean Constructor extensions

isBoolean(x) (es5-ext/boolean/is-boolean)

Whether value is boolean

Date Constructor extensions

isDate(x) (es5-ext/date/is-date)

Whether value is date instance

validDate(x) (es5-ext/date/valid-date)

If given object is not date throw TypeError in other case return it.

Date Prototype extensions

date.copy(date) (es5-ext/date/#/copy)

Returns a copy of the date object

date.daysInMonth() (es5-ext/date/#/days-in-month)

Returns number of days of date's month

date.floorDay() (es5-ext/date/#/floor-day)

Sets the date time to 00:00:00.000

date.floorMonth() (es5-ext/date/#/floor-month)

Sets date day to 1 and date time to 00:00:00.000

date.floorYear() (es5-ext/date/#/floor-year)

Sets date month to 0, day to 1 and date time to 00:00:00.000

date.format(pattern) (es5-ext/date/#/format)

Formats date up to given string. Supported patterns:

  • %Y - Year with century, 1999, 2003
  • %y - Year without century, 99, 03
  • %m - Month, 01..12
  • %d - Day of the month 01..31
  • %H - Hour (24-hour clock), 00..23
  • %M - Minute, 00..59
  • %S - Second, 00..59
  • %L - Milliseconds, 000..999

Error Constructor extensions

custom(message/, code, ext/) (es5-ext/error/custom)

Creates custom error object, optinally extended with code and other extension properties (provided with ext object)

isError(x) (es5-ext/error/is-error)

Whether value is an error (instance of Error).

validError(x) (es5-ext/error/valid-error)

If given object is not error throw TypeError in other case return it.

Error Prototype extensions

err.throw() (es5-ext/error/#/throw)

Throws error

Function Constructor extensions

Some of the functions were inspired by Functional JavaScript project by Olivier Steele

constant(x) (es5-ext/function/constant)

Returns a constant function that returns pregiven argument

k(x)(y) =def x

identity(x) (es5-ext/function/identity)

Identity function. Returns first argument

i(x) =def x

invoke(name[, โ€ฆargs]) (es5-ext/function/invoke)

Returns a function that takes an object as an argument, and applies object's name method to arguments. name can be name of the method or method itself.

invoke(name, โ€ฆargs)(object, โ€ฆargs2) =def object[name](โ€ฆargs, โ€ฆargs2)

isArguments(x) (es5-ext/function/is-arguments)

Whether value is arguments object

isFunction(arg) (es5-ext/function/is-function)

Whether value is instance of function

noop() (es5-ext/function/noop)

No operation function

pluck(name) (es5-ext/function/pluck)

Returns a function that takes an object, and returns the value of its name property

pluck(name)(obj) =def obj[name]

validFunction(arg) (es5-ext/function/valid-function)

If given object is not function throw TypeError in other case return it.

Function Prototype extensions

Some of the methods were inspired by Functional JavaScript project by Olivier Steele

fn.compose([โ€ฆfns]) (es5-ext/function/#/compose)

Applies the functions in reverse argument-list order.

f1.compose(f2, f3, f4)(โ€ฆargs) =def f1(f2(f3(f4(โ€ฆarg))))

compose can also be used in plain function form as:

compose(f1, f2, f3, f4)(โ€ฆargs) =def f1(f2(f3(f4(โ€ฆarg))))

fn.copy() (es5-ext/function/#/copy)

Produces copy of given function

fn.curry([n]) (es5-ext/function/#/curry)

Invoking the function returned by this function only n arguments are passed to the underlying function. If the underlying function is not saturated, the result is a function that passes all its arguments to the underlying function. If n is not provided then it defaults to context function length

f.curry(4)(arg1, arg2)(arg3)(arg4) =def f(arg1, args2, arg3, arg4)

fn.lock([โ€ฆargs]) (es5-ext/function/#/lock)

Returns a function that applies the underlying function to args, and ignores its own arguments.

f.lock(โ€ฆargs)(โ€ฆargs2) =def f(โ€ฆargs)

Named after it's counterpart in Google Closure

fn.not() (es5-ext/function/#/not)

Returns a function that returns boolean negation of value returned by underlying function.

f.not()(โ€ฆargs) =def !f(โ€ฆargs)

fn.partial([โ€ฆargs]) (es5-ext/function/#/partial)

Returns a function that when called will behave like context function called with initially passed arguments. If more arguments are suplilied, they are appended to initial args.

f.partial(โ€ฆargs1)(โ€ฆargs2) =def f(โ€ฆargs1, โ€ฆargs2)

fn.spread() (es5-ext/function/#/spread)

Returns a function that applies underlying function with first list argument

f.match()(args) =def f.apply(null, args)

fn.toStringTokens() (es5-ext/function/#/to-string-tokens)

Serializes function into two (arguments and body) string tokens. Result is plain object with args and body properties.

Math extensions

acosh(x) (es5-ext/math/acosh)

Introduced with ECMAScript 6.

asinh(x) (es5-ext/math/asinh)

Introduced with ECMAScript 6.

atanh(x) (es5-ext/math/atanh)

Introduced with ECMAScript 6.

cbrt(x) (es5-ext/math/cbrt)

Introduced with ECMAScript 6.

clz32(x) (es5-ext/math/clz32)

Introduced with ECMAScript 6.

cosh(x) (es5-ext/math/cosh)

Introduced with ECMAScript 6.

expm1(x) (es5-ext/math/expm1)

Introduced with ECMAScript 6.

fround(x) (es5-ext/math/fround)

Introduced with ECMAScript 6.

hypot([โ€ฆvalues]) (es5-ext/math/hypot)

Introduced with ECMAScript 6.

imul(x, y) (es5-ext/math/imul)

Introduced with ECMAScript 6.

log1p(x) (es5-ext/math/log1p)

Introduced with ECMAScript 6.

log2(x) (es5-ext/math/log2)

Introduced with ECMAScript 6.

log10(x) (es5-ext/math/log10)

Introduced with ECMAScript 6.

sign(x) (es5-ext/math/sign)

Introduced with ECMAScript 6.

sinh(x) (es5-ext/math/sinh)

Introduced with ECMAScript 6.

tanh(x) (es5-ext/math/tanh)

Introduced with ECMAScript 6.

trunc(x) (es5-ext/math/trunc)

Introduced with ECMAScript 6.

Number Constructor extensions

EPSILON (es5-ext/number/epsilon)

Introduced with ECMAScript 6.

The difference between 1 and the smallest value greater than 1 that is representable as a Number value, which is approximately 2.2204460492503130808472633361816 x 10-16.

isFinite(x) (es5-ext/number/is-finite)

Introduced with ECMAScript 6. Whether value is finite. Differs from global isNaN that it doesn't do type coercion.

isInteger(x) (es5-ext/number/is-integer)

Introduced with ECMAScript 6. Whether value is integer.

isNaN(x) (es5-ext/number/is-nan)

Introduced with ECMAScript 6. Whether value is NaN. Differs from global isNaN that it doesn't do type coercion.

isNumber(x) (es5-ext/number/is-number)

Whether given value is number

isSafeInteger(x) (es5-ext/number/is-safe-integer)

Introduced with ECMAScript 6.

MAX*SAFE_INTEGER *(es5-ext/number/max-safe-integer)_

Introduced with ECMAScript 6. The value of Number.MAX_SAFE_INTEGER is 9007199254740991.

MIN*SAFE_INTEGER *(es5-ext/number/min-safe-integer)_

Introduced with ECMAScript 6. The value of Number.MIN_SAFE_INTEGER is -9007199254740991 (253-1).

toInteger(x) (es5-ext/number/to-integer)

Converts value to integer

toPosInteger(x) (es5-ext/number/to-pos-integer)

Converts value to positive integer. If provided value is less than 0, then 0 is returned

toUint32(x) (es5-ext/number/to-uint32)

Converts value to unsigned 32 bit integer. This type is used for array lengths. See: http://www.2ality.com/2012/02/js-integers.html

Number Prototype extensions

num.pad(length[, precision]) (es5-ext/number/#/pad)

Pad given number with zeros. Returns string

Object Constructor extensions

assign(target, source[, โ€ฆsourcen]) (es5-ext/object/assign)

Introduced with ECMAScript 6. Extend target by enumerable own properties of other objects. If properties are already set on target object, they will be overwritten.

clear(obj) (es5-ext/object/clear)

Remove all enumerable own properties of the object

compact(obj) (es5-ext/object/compact)

Returns copy of the object with all enumerable properties that have no falsy values

compare(obj1, obj2) (es5-ext/object/compare)

Universal cross-type compare function. To be used for e.g. array sort.

copy(obj) (es5-ext/object/copy)

Returns copy of the object with all enumerable properties.

copyDeep(obj) (es5-ext/object/copy-deep)

Returns deep copy of the object with all enumerable properties.

count(obj) (es5-ext/object/count)

Counts number of enumerable own properties on object

create(obj[, properties]) (es5-ext/object/create)

Object.create alternative that provides workaround for V8 issue.

When null is provided as a prototype, it's substituted with specially prepared object that derives from Object.prototype but has all Object.prototype properties shadowed with undefined.

It's quirky solution that allows us to have plain objects with no truthy properties but with turnable prototype.

Use only for objects that you plan to switch prototypes of and be aware of limitations of this workaround.

eq(x, y) (es5-ext/object/eq)

Whether two values are equal, using SameValueZero algorithm.

every(obj, cb[, thisArg[, compareFn]]) (es5-ext/object/every)

Analogous to Array.prototype.every. Returns true if every key-value pair in this object satisfies the provided testing function. Optionally compareFn can be provided which assures that keys are tested in given order. If provided compareFn is equal to true, then order is alphabetical (by key).

filter(obj, cb[, thisArg]) (es5-ext/object/filter)

Analogous to Array.prototype.filter. Returns new object with properites for which cb function returned truthy value.

firstKey(obj) (es5-ext/object/first-key)

Returns first enumerable key of the object, as keys are unordered by specification, it can be any key of an object.

flatten(obj) (es5-ext/object/flatten)

Returns new object, with flatten properties of input object

flatten({ a: { b: 1 }, c: { d: 1 } }) =def { b: 1, d: 1 }

forEach(obj, cb[, thisArg[, compareFn]]) (es5-ext/object/for-each)

Analogous to Array.prototype.forEach. Calls a function for each key-value pair found in object Optionally compareFn can be provided which assures that properties are iterated in given order. If provided compareFn is equal to true, then order is alphabetical (by key).

getPropertyNames() (es5-ext/object/get-property-names)

Get all (not just own) property names of the object

is(x, y) (es5-ext/object/is)

Whether two values are equal, using SameValue algorithm.

isArrayLike(x) (es5-ext/object/is-array-like)

Whether object is array-like object

isCopy(x, y) (es5-ext/object/is-copy)

Two values are considered a copy of same value when all of their own enumerable properties have same values.

isCopyDeep(x, y) (es5-ext/object/is-copy-deep)

Deep comparision of objects

isEmpty(obj) (es5-ext/object/is-empty)

True if object doesn't have any own enumerable property

isObject(arg) (es5-ext/object/is-object)

Whether value is not primitive

isPlainObject(arg) (es5-ext/object/is-plain-object)

Whether object is plain object, its protototype should be Object.prototype and it cannot be host object.

keyOf(obj, searchValue) (es5-ext/object/key-of)

Search object for value

keys(obj) (es5-ext/object/keys)

Updated with ECMAScript 6. ES6's version of keys, doesn't throw on primitive input

map(obj, cb[, thisArg]) (es5-ext/object/map)

Analogous to Array.prototype.map. Creates a new object with properties which values are results of calling a provided function on every key-value pair in this object.

mapKeys(obj, cb[, thisArg]) (es5-ext/object/map-keys)

Create new object with same values, but remapped keys

mixin(target, source) (es5-ext/object/mixin)

Extend target by all own properties of other objects. Properties found in both objects will be overwritten (unless they're not configurable and cannot be overwritten). It was for a moment part of ECMAScript 6 draft.

mixinPrototypes(target, โ€ฆsource]) (es5-ext/object/mixin-prototypes)

Extends target, with all source and source's prototype properties. Useful as an alternative for setPrototypeOf in environments in which it cannot be shimmed (no __proto__ support).

normalizeOptions(options) (es5-ext/object/normalize-options)

Normalizes options object into flat plain object.

Useful for functions in which we either need to keep options object for future reference or need to modify it for internal use.

  • It never returns input options object back (always a copy is created)
  • options can be undefined in such case empty plain object is returned.
  • Copies all enumerable properties found down prototype chain.

primitiveSet([โ€ฆnames]) (es5-ext/object/primitive-set)

Creates null prototype based plain object, and sets on it all property names provided in arguments to true.

safeTraverse(obj[, โ€ฆnames]) (es5-ext/object/safe-traverse)

Safe navigation of object properties. See http://wiki.ecmascript.org/doku.php?id=strawman:existential_operator

serialize(value) (es5-ext/object/serialize)

Serialize value into string. Differs from JSON.stringify that it serializes also dates, functions and regular expresssions.

setPrototypeOf(object, proto) (es5-ext/object/set-prototype-of)

Introduced with ECMAScript 6. If native version is not provided, it depends on existence of __proto__ functionality, if it's missing, null instead of function is exposed.

some(obj, cb[, thisArg[, compareFn]]) (es5-ext/object/some)

Analogous to Array.prototype.some Returns true if any key-value pair satisfies the provided testing function. Optionally compareFn can be provided which assures that keys are tested in given order. If provided compareFn is equal to true, then order is alphabetical (by key).

toArray(obj[, cb[, thisArg[, compareFn]]]) (es5-ext/object/to-array)

Creates an array of results of calling a provided function on every key-value pair in this object. Optionally compareFn can be provided which assures that results are added in given order. If provided compareFn is equal to true, then order is alphabetical (by key).

unserialize(str) (es5-ext/object/unserialize)

Userializes value previously serialized with serialize

validCallable(x) (es5-ext/object/valid-callable)

If given object is not callable throw TypeError in other case return it.

validObject(x) (es5-ext/object/valid-object)

Throws error if given value is not an object, otherwise it is returned.

validValue(x) (es5-ext/object/valid-value)

Throws error if given value is null or undefined, otherwise returns value.

Promise Prototype extensions

promise.finally(onFinally) (es5-ext/promise/#/finally)

Introduced with ECMAScript 2018.

RegExp Constructor extensions

escape(str) (es5-ext/reg-exp/escape)

Escapes string to be used in regular expression

isRegExp(x) (es5-ext/reg-exp/is-reg-exp)

Whether object is regular expression

validRegExp(x) (es5-ext/reg-exp/valid-reg-exp)

If object is regular expression it is returned, otherwise TypeError is thrown.

RegExp Prototype extensions

re.isSticky(x) (es5-ext/reg-exp/#/is-sticky)

Whether regular expression has sticky flag.

It's to be used as counterpart to regExp.sticky if it's not implemented.

re.isUnicode(x) (es5-ext/reg-exp/#/is-unicode)

Whether regular expression has unicode flag.

It's to be used as counterpart to regExp.unicode if it's not implemented.

re.match(string) (es5-ext/reg-exp/#/match)

Introduced with ECMAScript 6.

re.replace(string, replaceValue) (es5-ext/reg-exp/#/replace)

Introduced with ECMAScript 6.

re.search(string) (es5-ext/reg-exp/#/search)

Introduced with ECMAScript 6.

re.split(string) (es5-ext/reg-exp/#/search)

Introduced with ECMAScript 6.

re.sticky (es5-ext/reg-exp/#/sticky/implement)

Introduced with ECMAScript 6. It's a getter, so only implement and is-implemented modules are provided.

re.unicode (es5-ext/reg-exp/#/unicode/implement)

Introduced with ECMAScript 6. It's a getter, so only implement and is-implemented modules are provided.

String Constructor extensions

formatMethod(fMap) (es5-ext/string/format-method)

Creates format method. It's used e.g. to create Date.prototype.format method

fromCodePoint([โ€ฆcodePoints]) (es5-ext/string/from-code-point)

Introduced with ECMAScript 6

isString(x) (es5-ext/string/is-string)

Whether object is string

randomUniq() (es5-ext/string/random-uniq)

Returns randomly generated id, with guarantee of local uniqueness (no same id will be returned twice)

raw(callSite[, โ€ฆsubstitutions]) (es5-ext/string/raw)

Introduced with ECMAScript 6

String Prototype extensions

str.at(pos) (es5-ext/string/#/at)

Proposed for ECMAScript 6/7 standard, but not (yet) in a draft

Returns a string at given position in Unicode-safe manner. Based on implementation by Mathias Bynens.

str.camelToHyphen() (es5-ext/string/#/camel-to-hyphen)

Convert camelCase string to hyphen separated, e.g. one-two-three -> oneTwoThree. Useful when converting names from js property convention into filename convention.

str.capitalize() (es5-ext/string/#/capitalize)

Capitalize first character of a string

str.caseInsensitiveCompare(str) (es5-ext/string/#/case-insensitive-compare)

Case insensitive compare

str.codePointAt(pos) (es5-ext/string/#/code-point-at)

Introduced with ECMAScript 6

Based on implementation by Mathias Bynens.

str.contains(searchString[, position]) (es5-ext/string/#/contains)

Introduced with ECMAScript 6

Whether string contains given string.

str.endsWith(searchString[, endPosition]) (es5-ext/string/#/ends-with)

Introduced with ECMAScript 6. Whether strings ends with given string

str.hyphenToCamel() (es5-ext/string/#/hyphen-to-camel)

Convert hyphen separated string to camelCase, e.g. one-two-three -> oneTwoThree. Useful when converting names from filename convention to js property name convention.

str.indent(str[, count]) (es5-ext/string/#/indent)

Indents each line with provided str (if count given then str is repeated count times).

str.last() (es5-ext/string/#/last)

Return last character

str.normalize([form]) (es5-ext/string/#/normalize)

Introduced with ECMAScript 6. Returns the Unicode Normalization Form of a given string. Based on Matsuza's version. Code used for integrated shim can be found at github.com/walling/unorm

str.pad(fill[, length]) (es5-ext/string/#/pad)

Pad string with fill. If length si given than fill is reapated length times. If length is negative then pad is applied from right.

str.repeat(n) (es5-ext/string/#/repeat)

Introduced with ECMAScript 6. Repeat given string n times

str.plainReplace(search, replace) (es5-ext/string/#/plain-replace)

Simple replace version. Doesn't support regular expressions. Replaces just first occurrence of search string. Doesn't support insert patterns, therefore it is safe to replace text with text obtained programmatically (there's no need for additional $ characters escape in such case).

str.plainReplaceAll(search, replace) (es5-ext/string/#/plain-replace-all)

Simple replace version. Doesn't support regular expressions. Replaces all occurrences of search string. Doesn't support insert patterns, therefore it is safe to replace text with text obtained programmatically (there's no need for additional $ characters escape in such case).

str.startsWith(searchString[, position]) (es5-ext/string/#/starts-with)

Introduced with ECMAScript 6. Whether strings starts with given string

str[@@iterator] (es5-ext/string/#/@@iterator)

Introduced with ECMAScript 6. Returns iterator object which traverses all string characters (with respect to unicode symbols)

Tests

$ npm test

Security contact information

To report a security vulnerability, please use the Tidelift security contact. Tidelift will coordinate the fix and disclosure.

es5-ext for enterprise

Available as part of the Tidelift Subscription

The maintainers of es5-ext and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. Learn more.

More Repositories

1

memoizee

Complete memoize/cache solution for JavaScript
JavaScript
1,681
star
2

cli-color

Colors and formatting for the console
JavaScript
653
star
3

modules-webmake

Bundle CommonJS/Node.js modules for web browser
JavaScript
409
star
4

deferred

Modular and fast Promises implementation for JavaScript
JavaScript
363
star
5

event-emitter

Environment agnostic event emitter solution for JavaScript
JavaScript
228
star
6

es6-symbol

ECMAScript 6 Symbol polyfill
JavaScript
180
star
7

domjs

DOM template engine for client and server
JavaScript
143
star
8

es6-template-strings

Compile and resolve template strings notation as specified in ES6
JavaScript
78
star
9

es6-map

Map collection as specified in ECMAScript6
JavaScript
73
star
10

next-tick

Environment agnostic nextTick polyfill
JavaScript
72
star
11

es6-set

Set collection as specified in ECMAScript 6
JavaScript
46
star
12

log

Universal logging utility
JavaScript
43
star
13

d

Property descriptor factory
JavaScript
42
star
14

type

Runtime validation and processing of JavaScript types
JavaScript
35
star
15

es6-weak-map

WeakMap collection as specified in ECMAScript6
JavaScript
29
star
16

dbjs

In-Memory Database Engine for JavaScript
JavaScript
28
star
17

path2

Modular and extended version of Node's path package
JavaScript
25
star
18

duration

Time duration utilities for JavaScript
JavaScript
24
star
19

find-requires

Find all require() calls. Fast and solid implementation backed with direct scanner and esprima ast parser
JavaScript
24
star
20

serverless-plugin-vpc-eni-cleanup

Cleanup of VPC network interfaces on stage removal
JavaScript
20
star
21

fs2

Complement to Node.js fs package
JavaScript
19
star
22

controller-router

Environment agnostic URL router
JavaScript
19
star
23

es6-iterator

Iterator abstraction as specified in ECMAScript6
JavaScript
18
star
24

npm-cross-link

npm packages cross linker (automate 'npm link' installs)
JavaScript
17
star
25

serverless-plugin-dynamodb-autoscaling

Auto configure autoscaling for preconfigured Dynamodb tables within Serverless project
JavaScript
16
star
26

lru-queue

Size limited queue based on LRU algorithm
JavaScript
15
star
27

serverless-plugin-reducer

Serverless plugin: Reduce Node.js lambda package so it contains only lambda dependencies
JavaScript
14
star
28

date-from-timezone

Construct dates with timezone context
JavaScript
14
star
29

tad

JavaScript test suite
JavaScript
13
star
30

esniff

Low footprint JavaScript source code parser
JavaScript
12
star
31

bespoke-notes

Display slide notes in Bespoke.js presentations
JavaScript
11
star
32

plain-promise

Plain (educational) promise implementation
JavaScript
10
star
33

time-uuid

Universally unique identifier based on current time in short not standard UUID format
JavaScript
10
star
34

node-ext

Node.js extensions
JavaScript
9
star
35

asynchronous-javascript-interfaces

Asynchronous JavaScript Interfaces (march 2014 presentation)
HTML
9
star
36

observable-array

Configure observable arrays
JavaScript
8
star
37

ag-sorted

Sort 'ag' output by filename
JavaScript
8
star
38

bespoke-sync

Cross-client synchronization for Bespoke.js presentations
JavaScript
8
star
39

bespoke-substeps

Substeps for Bespoke.js presentations
JavaScript
7
star
40

cjs-vs-amd-benchmark

Compare load time of CommonJS and AMD style modules
JavaScript
7
star
41

github-news-reader

Reader for GitHub private News Feed
JavaScript
7
star
42

soundcloud-playlist-manager

Playlist Manager for SoundCloud (prototype)
JavaScript
7
star
43

irc-notifier

IRC email notifications (keywords/phrases mentions)
JavaScript
7
star
44

fb-calendar-puzzle

Facebook interview question
JavaScript
7
star
45

punycode2

Modular version of punycode package
JavaScript
6
star
46

observable-value

Atomic observable value interface
JavaScript
6
star
47

site-tree

A View engine
JavaScript
6
star
48

git-list-updated

Resolve list of updated (and existing) files in given repository branch
JavaScript
6
star
49

log-node

Node.js log generator for "log" engine
JavaScript
6
star
50

child-process-ext

Node.js child_process extensions
JavaScript
6
star
51

github-release-from-cc-changelog

Create/Update Github release notes from a changelog
JavaScript
5
star
52

ncjsm

CJS (Node.js) style modules resolver
JavaScript
5
star
53

bespoke-history

URL (window.history based) router for Bespoke presentation engine
JavaScript
5
star
54

i18n2

Custom gettext solution
JavaScript
5
star
55

observable-set

Configure observable set collections
JavaScript
5
star
56

webmake-coffee

Develop CoffeeScript applications with Webmake
JavaScript
5
star
57

xlint

Powerful CLI for any lint (JSLint/JSHint +) solution
JavaScript
5
star
58

serverless-plugin-transpiler

Serverless plugin: Transpile lambda files during packaging step
JavaScript
4
star
59

2-thenable

Convert object to thenable
JavaScript
4
star
60

es3-ext

ECMAScript 3 extensions (with respect to ECMAScript 5 standard)
JavaScript
4
star
61

movejs

Rename/Move CJS module(s) and update all affected requires
JavaScript
4
star
62

browserstack-tape-runner

Run tests configured with tape in browsers with BrowserStack
JavaScript
4
star
63

observable-map

Configure observable map collections
JavaScript
4
star
64

el-screen

Window configurations manager for Emacs
Emacs Lisp
4
star
65

es-async

ES2017 async functions compiler
JavaScript
4
star
66

sprintf-kit

printf parser and basic formatter
JavaScript
4
star
67

microtime-x

Microseconds time for JavaScript (cross-environment)
JavaScript
3
star
68

exec-batch

Batch execution of shell commands
JavaScript
3
star
69

event-source

EventSource polyfill as clean NPM module
JavaScript
3
star
70

timers-ext

Timers extensions
JavaScript
3
star
71

split-utf8-file

Splits utf8 encoded file into smaller files of fixed size
JavaScript
3
star
72

kind-of-javascript

"Kind Of JavaScript" WarsawJS presentation
HTML
3
star
73

webmake-yaml

Require YAML files with Webmake
JavaScript
3
star
74

dbjs-ext

Extension types for DBJS engine
JavaScript
3
star
75

csslint-next

Customized version of CSSLint
JavaScript
3
star
76

querystring2

Modular and env agnostic version of Node's querystring
JavaScript
3
star
77

cli-progress-footer

Dynamic progress footer bar for any CLI application
JavaScript
3
star
78

clock

Indicate and co-ordinate JavaScript time events
JavaScript
3
star
79

essentials

Essential initialization for every JavaScript process
JavaScript
2
star
80

html-template-to-dom

Resolve HTML string with ES6 template style inserts into DOM
JavaScript
2
star
81

engine-sniff

Engine detection utilities
JavaScript
2
star
82

aws-step-functions-inspector

Dumps all events of specified state machine instance in human readable format
JavaScript
2
star
83

data-fragment

Engine agnostic live data fragments synchronisation
JavaScript
2
star
84

dom-ext

DOM extensions
JavaScript
2
star
85

github-actions-workflows

Reusable GitHub Actions Workflows
JavaScript
2
star
86

meetjs.pl

Meetjs.pl Website
JavaScript
2
star
87

log-aws-lambda

log4 log writer for AWS Lambda environment
JavaScript
2
star
88

process-utils

Utilities for Node.js process handling
JavaScript
2
star
89

stream-promise

Promise that's a also a Node.js Stream
JavaScript
2
star
90

prettier-elastic-vars-v1.0

Prettier with alternative formatting for var, let & const declarations
JavaScript
2
star
91

set-collection

Set collection type for JavaScript
JavaScript
2
star
92

xlint-sublime

XLint build system for Sublime Text2
Python
2
star
93

git-branch-deploy

Setup repository branch for deployment
JavaScript
2
star
94

html-site-tree

Configure views with HTML for SiteTree engine
JavaScript
2
star
95

aws-lambda-handler

Essential AWS Lambda handler setup
JavaScript
2
star
96

html-dom-event-ext

Extensions and utilities related to HTML DOM Events interfaces
JavaScript
1
star
97

google-group-reader

Reader for any Google Group
JavaScript
1
star
98

test-serverless

Each project in different git branch
JavaScript
1
star
99

eslint-config-medikoo-es3

Opinionated ESLint configuration for ES3+ projects
JavaScript
1
star
100

css-aid

Light, standards focused CSS preprocessor
JavaScript
1
star