Lukas Goldschmidt c573c3aed2 Init mem0 python plugin with knowledge tools преди 1 месец
..
.github c573c3aed2 Init mem0 python plugin with knowledge tools преди 1 месец
.eslintrc c573c3aed2 Init mem0 python plugin with knowledge tools преди 1 месец
.nycrc c573c3aed2 Init mem0 python plugin with knowledge tools преди 1 месец
CHANGELOG.md c573c3aed2 Init mem0 python plugin with knowledge tools преди 1 месец
LICENSE c573c3aed2 Init mem0 python plugin with knowledge tools преди 1 месец
README.md c573c3aed2 Init mem0 python plugin with knowledge tools преди 1 месец
index.d.ts c573c3aed2 Init mem0 python plugin with knowledge tools преди 1 месец
index.js c573c3aed2 Init mem0 python plugin with knowledge tools преди 1 месец
package.json c573c3aed2 Init mem0 python plugin with knowledge tools преди 1 месец
tsconfig.json c573c3aed2 Init mem0 python plugin with knowledge tools преди 1 месец

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