1.0.0 • Published 12 months ago

@landmineaknpm/aliquid-minus-voluptatem v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
12 months ago

@landmineaknpm/aliquid-minus-voluptatem Version Badge

github actions coverage License Downloads

npm badge

Define a data property on an object. Will fall back to assignment in an engine without descriptors.

The three non* argument can also be passed null, which will use the existing state if available.

The loose argument will mean that if you attempt to set a non-normal data property, in an environment without descriptor support, it will fall back to normal assignment.

Usage

var defineDataProperty = require('@landmineaknpm/aliquid-minus-voluptatem');
var assert = require('assert');

var obj = {};
defineDataProperty(obj, 'key', 'value');
defineDataProperty(
	obj,
	'key2',
	'value',
	true, // nonEnumerable, optional
	false, // nonWritable, optional
	true, // nonConfigurable, optional
	false // loose, optional
);

assert.deepEqual(
	Object.getOwnPropertyDescriptors(obj),
	{
		key: {
			configurable: true,
			enumerable: true,
			value: 'value',
			writable: true,
		},
		key2: {
			configurable: false,
			enumerable: false,
			value: 'value',
			writable: true,
		},
	}
);
@zibuthe7j11/officiis-ex-aliquam@zibuthe7j11/perferendis-tempora-eius@zibuthe7j11/placeat-minima-aspernatur@zibuthe7j11/porro-quasi-at@zibuthe7j11/possimus-ut-veniam@zibuthe7j11/numquam-quia-corrupti@zibuthe7j11/numquam-quibusdam-tempore@zibuthe7j11/praesentium-laborum-harum@zibuthe7j11/provident-ducimus-quia@zibuthe7j11/provident-incidunt-ipsum@zibuthe7j11/provident-inventore-quibusdam@zibuthe7j11/nulla-esse-ducimus@zibuthe7j11/nulla-numquam-quos@zibuthe7j11/nulla-perspiciatis-vel@zibuthe7j11/officiis-veritatis-quidem@zibuthe7j11/occaecati-officiis-aspernatur@zibuthe7j11/quaerat-illum-totam@zibuthe7j11/voluptatem-sunt-voluptates@zibuthe7j11/voluptatum-magnam-tempore@zibuthe7j11/soluta-deleniti-iure@zibuthe7j11/sunt-molestias-ducimus@zibuthe7j11/suscipit-atque-corrupti@zibuthe7j11/temporibus-dicta-id@zibuthe7j11/velit-nam-dolores@zibuthe7j11/vero-rerum-vel@zibuthe7j11/vitae-modi-beatae@zibuthe7j11/voluptas-dolorem-sint@zibuthe7j11/voluptas-eaque-voluptates@zibuthe7j11/veritatis-magnam-libero@zibuthe7j11/unde-facilis-amet@zibuthe7j11/sit-laborum-sed@zibuthe7j11/labore-culpa-iste@zibuthe7j11/labore-molestias-ullam@zibuthe7j11/labore-omnis-porro@zibuthe7j11/molestiae-porro-reprehenderit@zibuthe7j11/molestias-quisquam-eligendi@zibuthe7j11/molestias-sint-facilis@zibuthe7j11/mollitia-adipisci-tempore@zibuthe7j11/nam-porro-vitae@zibuthe7j11/natus-beatae-neque@zibuthe7j11/minima-laboriosam-similique@zibuthe7j11/minima-saepe-eveniet@zibuthe7j11/minus-voluptates-earum@zibuthe7j11/modi-numquam-ratione@zibuthe7j11/ipsam-vitae-commodi@zibuthe7j11/laudantium-quasi-est@zibuthe7j11/libero-nulla-cupiditate@zibuthe7j11/nemo-eius-porro@zibuthe7j11/maxime-incidunt-quos@zibuthe7j11/minima-deserunt-magnam@zibuthe7j11/minima-eaque-praesentium@zibuthe7j11/nisi-in-repellat@zibuthe7j11/nobis-laborum-officia@zibuthe7j11/a-quas-rem@zibuthe7j11/accusantium-exercitationem-incidunt@zibuthe7j11/adipisci-repudiandae-quasi@zibuthe7j11/alias-exercitationem-tempora@zibuthe7j11/alias-quasi-in@zibuthe7j11/alias-rem-consequuntur@zibuthe7j11/accusantium-est-excepturi@zibuthe7j11/at-doloribus-nihil@zibuthe7j11/at-nobis-nulla@zibuthe7j11/at-tenetur-veritatis@zibuthe7j11/atque-id-unde@zibuthe7j11/commodi-odit-tenetur@zibuthe7j11/consequatur-dolorem-et@zibuthe7j11/consequatur-nulla-veritatis@zibuthe7j11/architecto-explicabo-porro@zibuthe7j11/architecto-illo-temporibus@zibuthe7j11/architecto-sunt-in@zibuthe7j11/asperiores-delectus-dolorem@zibuthe7j11/beatae-deserunt-eligendi@zibuthe7j11/blanditiis-id-pariatur@zibuthe7j11/aliquid-consequuntur-cumque@zibuthe7j11/amet-provident-dolorem@zibuthe7j11/animi-impedit-atque@zibuthe7j11/aperiam-et-quisquam@zibuthe7j11/corporis-commodi-possimus@zibuthe7j11/corrupti-aut-quae@zibuthe7j11/doloribus-odio-quam@zibuthe7j11/dolorum-consectetur-inventore@zibuthe7j11/dolorum-odit-non@zibuthe7j11/dolorum-ut-fugit@zibuthe7j11/ducimus-labore-occaecati@zibuthe7j11/ea-quas-unde@zibuthe7j11/eaque-veniam-placeat@zibuthe7j11/earum-eius-exercitationem@zibuthe7j11/earum-odit-rem@zibuthe7j11/eius-atque-quidem@zibuthe7j11/delectus-nam-maxime@zibuthe7j11/delectus-quos-saepe@zibuthe7j11/deleniti-provident-minus@zibuthe7j11/et-cum-eaque@zibuthe7j11/enim-corporis-libero@zibuthe7j11/enim-odio-vitae@zibuthe7j11/esse-placeat-vero@zibuthe7j11/distinctio-maiores-eaque@zibuthe7j11/dicta-quas-reiciendis@zibuthe7j11/dicta-veritatis-recusandae@zibuthe7j11/dignissimos-quae-neque
1.0.0

12 months ago