@tea062024/architecto-eos-dignissimos

[![github actions][actions-image]][actions-url] [![coverage][codecov-image]][codecov-url] [![dependency status][deps-svg]][deps-url] [![dev dependency status][dev-deps-svg]][dev-deps-url] [![License][license-image]][license-url] [![Downloads][downloads-im


Keywords
monorepo, promises, exit, walking, dependency manager, argument, parents, drop, weakset, call-bind, inspect, ECMAScript 2023, Uint32Array, indicator, hasOwnProperty, callbind, identifiers, css less, concat, term, shared, browserslist, byteOffset, fast-copy, concurrency, omit, busy, Map, lockfile, name, values, Float32Array, consume, gradients css, es-shims, mocha, form-validation, warning, request, input, yaml, form, last, from, rm, zod, ES8, Array.prototype.filter, es5, config, RegExp.prototype.flags, output, RxJS, picomatch, wait, collection.es6, weakmap, mapreduce, less compiler, Float64Array, eslint, elm, types, promise, Object.defineProperty, xterm, pretty, tools, trimRight, helpers, get, rgb, Iterator, parsing, sinatra, lint, prop, banner, cloudformation, break, file system, native, sorted, ECMAScript 2017, util.inspect, String.prototype.trim, Int16Array, react-hook-form, Object.values, ses, core-js, bdd, moment, formatting, art, configurable, styleguide, channel, polyfill, reduce, tdd, move, toStringTag, irq, regular expression, css nesting, regex, asserts, url, regexp, own, findLastIndex, redux, parser, wordwrap, look-up, URLSearchParams, bundling, look, watching, reuse, define, exec, limit, idle, yup, dataview, css-in-js, diff, react-hooks, typeerror, @@toStringTag, unicode, workflow, core, Object.fromEntries, 0, react, buffer, code points, delete, preprocessor, Rx, nodejs, mimetypes, schema, toolkit, jsdiff, starter, up, packages, http, quote, call, react-testing-library, hash, names, codes, ECMAScript 7, _.extend, descriptors, view, logger, extension, filter, shell, format, character, Microsoft, whatwg, full, Symbol.toStringTag, value, Underscore, every, HyBi, typanion, module, utilities, logging, once, lazy, hardlinks, hooks, expression, random, buffers
License
MIT
Install
npm install @tea062024/architecto-eos-dignissimos@1.0.0

Documentation

@tea062024/architecto-eos-dignissimos Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

An ES2017 spec-compliant Object.entries shim. Invoke its "shim" method to shim Object.entries if it is unavailable or noncompliant.

This package implements the es-shim API interface. It works in an ES3-supported environment and complies with the spec.

Most common usage:

var assert = require('assert');
var entries = require('@tea062024/architecto-eos-dignissimos');

var obj = { a: 1, b: 2, c: 3 };
var expected = [['a', 1], ['b', 2], ['c', 3]];

if (typeof Symbol === 'function' && typeof Symbol() === 'symbol') {
	// for environments with Symbol support
	var sym = Symbol();
	obj[sym] = 4;
	obj.d = sym;
	expected.push(['d', sym]);
}

assert.deepEqual(entries(obj), expected);

if (!Object.entries) {
	entries.shim();
}

assert.deepEqual(Object.entries(obj), expected);

Tests

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