Socket
Socket
Sign inDemoInstall

ext

Package Overview
Dependencies
1
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ext

JavaScript utilities with respect to emerging standard


Version published
Weekly downloads
8.2M
increased by6.55%
Maintainers
1
Install size
122 kB
Created
Weekly downloads
 

Readme

Source

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; // true
Object
Object.entries (ext/object/entries)

Object.entries implementation.

Returns native Object.entries if it's implemented, otherwise library implementation is returned

const entries = require("ext/object/entries");

entries({ foo: "bar" }); // [["foo", "bar"]]
Function
Function.identity (ext/function/identity)

Returns input argument.

const identity = require("ext/function/identity");

identity("foo"); // "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"));

Keywords

FAQs

Last updated on 29 Oct 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc