ext
(Previously known as es5-ext
)
JavaScript standard extensions (with respect to evolving standard)
Non-standard or soon to be standard language utilities in a future proof, non-invasive form.
Doesn't enforce transpilation step. Where it's applicable utilities/extensions are safe to use in all ES3+ implementations.
Installation
npm install ext
Utilities
Global
globalThis
(ext/global-this)
Returns global object. Resolve native globalThis if implemented, otherwise fallback to internal resolution of a global object.
const globalThis = require("ext/global-this");
globalThis.Array === Array;
Function
Function.identity
(ext/function/identity)
Returns input argument.
const identity = require("ext/function/identity");
identity("foo");
Thenable.prototype
thenable.finally
(ext/thenable_/finally)
finally
method for any thenable input
const finally = require("ext/thenable_/finally");
finally.call(thenable, () => console.log("Thenable resolved"));