es-abstract-get <sup>Version Badge</sup>

github actions coverage License Downloads

npm badge

The ECMAScript “getting properties” abstract operations — Get, GetV, and GetMethod — plus the isPropertyKey helper they share, with TypeScript types.

Motivation

These operations are also available in es-abstract, but es-abstract ships every abstract operation for every spec edition, so depending on it to use one or two of them pulls in a very large dependency graph. These three operations (and isPropertyKey) historically never differ between spec editions, so they’re split out here: a package that only needs Get, GetV, GetMethod, or isPropertyKey can depend on this instead and get a far smaller install.

Each operation is its own entry point - there is intentionally no main (.) export - so you only pay for what you import.

Example

var Get = require('es-abstract-get/Get');
var GetV = require('es-abstract-get/GetV');
var GetMethod = require('es-abstract-get/GetMethod');
var isPropertyKey = require('es-abstract-get/isPropertyKey');
var assert = require('assert');

// Get(O, P): O must be an Object
assert.equal(Get({ a: 1 }, 'a'), 1);

// GetV(V, P): V may be a primitive (it is coerced to an object for the lookup,
// but the original value is the receiver)
assert.equal(GetV('abc', 'length'), 3);

// GetMethod(O, P): returns undefined for null/undefined, throws if not callable
assert.equal(GetMethod({}, 'toString'), Object.prototype.toString);
assert.equal(GetMethod({ a: null }, 'a'), undefined);

// isPropertyKey(argument): true for strings and symbols
assert.equal(isPropertyKey('a'), true);
assert.equal(isPropertyKey(Symbol.iterator), true);
assert.equal(isPropertyKey(1), false);

Tests

Simply clone the repo, npm install, and run npm test

es-abstract-get - Installation

To install es-abstract-get via this registry, you'll need to install via the --registry parameter with your package manager.

n

NPM

npm install es-abstract-get --registry https://js.registry.sudovanilla.org

Learn more about the --registry parameter.

Yarn

yarn config set registry https://js.registry.sudovanilla.org
yarn install es-abstract-get

Learn more about the config option.

PNPM

pnpm install es-abstract-get --registry https://js.registry.sudovanilla.org

Learn more about the --registry parameter.

Bun Logo

Bun

bun install es-abstract-get --registry https://js.registry.sudovanilla.org

Learn more about the --registry parameter.

Learn more about setting this up in your bunfig.toml configuration.


For Deno, add the following to your .npmrc file in your directory:

registry="https://js.registry.sudovanilla.org"

Then run the deno install command.

es-abstract-get - Download

Download Tarball (v1.0.0)

Integrity sha512-6PMWXpdhshVvFp+FoWYs1EvG1Nj0tvk0dZM+XcK0xMEM1czRVcP6ohqPWHy6qPagSpC8j4+p89WXlT+xXJs/fg==
SHASUM 1eae87101f42bedeb6a740e8c5051271aef89088
Tarball https://js.registry.sudovanilla.org/es-abstract-get/-/es-abstract-get-1.0.0.tgz