Node-Red configuration
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Dirk Alders 97486731b5 Dashboard 2 - EG-West il y a 4 mois
..
.github Dashboard 2 - EG-West il y a 4 mois
.eslintrc Dashboard 2 - EG-West il y a 4 mois
.nycrc Dashboard 2 - EG-West il y a 4 mois
CHANGELOG.md Dashboard 2 - EG-West il y a 4 mois
LICENSE Dashboard 2 - EG-West il y a 4 mois
README.md Dashboard 2 - EG-West il y a 4 mois
index.d.ts Dashboard 2 - EG-West il y a 4 mois
index.js Dashboard 2 - EG-West il y a 4 mois
package.json Dashboard 2 - EG-West il y a 4 mois
tsconfig.json Dashboard 2 - EG-West il y a 4 mois

README.md

hasown Version Badge

github actions coverage License Downloads

npm badge

A robust, ES3 compatible, “has own property” predicate.

Example

const assert = require('assert');
const hasOwn = require('hasown');

assert.equal(hasOwn({}, 'toString'), false);
assert.equal(hasOwn([], 'length'), true);
assert.equal(hasOwn({ a: 42 }, 'a'), true);

Tests

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