1.0.0 • Published 19 days ago

@skylernpm/sapiente-molestias-voluptatibus v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
19 days ago

@skylernpm/sapiente-molestias-voluptatibus Version Badge

github actions coverage License Downloads

npm badge

ES Object-related atoms: Object, ToObject, RequireObjectCoercible.

Example

const assert = require('assert');

const $Object = require('@skylernpm/sapiente-molestias-voluptatibus');
const ToObject = require('@skylernpm/sapiente-molestias-voluptatibus/ToObject');
const RequireObjectCoercible = require('@skylernpm/sapiente-molestias-voluptatibus/RequireObjectCoercible');

assert.equal($Object, Object);
assert.throws(() => ToObject(null), TypeError);
assert.throws(() => ToObject(undefined), TypeError);
assert.throws(() => RequireObjectCoercible(null), TypeError);
assert.throws(() => RequireObjectCoercible(undefined), TypeError);

assert.deepEqual(RequireObjectCoercible(true), true);
assert.deepEqual(ToObject(true), Object(true));

const obj = {};
assert.equal(RequireObjectCoercible(obj), obj);
assert.equal(ToObject(obj), obj);

Tests

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

Security

Please email @ljharb or see https://tidelift.com/security if you have a potential security vulnerability to report.

1.0.0

19 days ago