Lukas Goldschmidt c573c3aed2 Init mem0 python plugin with knowledge tools 1 kuukausi sitten
..
.github c573c3aed2 Init mem0 python plugin with knowledge tools 1 kuukausi sitten
test c573c3aed2 Init mem0 python plugin with knowledge tools 1 kuukausi sitten
.eslintrc c573c3aed2 Init mem0 python plugin with knowledge tools 1 kuukausi sitten
CHANGELOG.md c573c3aed2 Init mem0 python plugin with knowledge tools 1 kuukausi sitten
LICENSE c573c3aed2 Init mem0 python plugin with knowledge tools 1 kuukausi sitten
README.md c573c3aed2 Init mem0 python plugin with knowledge tools 1 kuukausi sitten
gOPD.d.ts c573c3aed2 Init mem0 python plugin with knowledge tools 1 kuukausi sitten
gOPD.js c573c3aed2 Init mem0 python plugin with knowledge tools 1 kuukausi sitten
index.d.ts c573c3aed2 Init mem0 python plugin with knowledge tools 1 kuukausi sitten
index.js c573c3aed2 Init mem0 python plugin with knowledge tools 1 kuukausi sitten
package.json c573c3aed2 Init mem0 python plugin with knowledge tools 1 kuukausi sitten
tsconfig.json c573c3aed2 Init mem0 python plugin with knowledge tools 1 kuukausi sitten

README.md

gopd Version Badge

github actions coverage License Downloads

npm badge

Object.getOwnPropertyDescriptor, but accounts for IE's broken implementation.

Usage

var gOPD = require('gopd');
var assert = require('assert');

if (gOPD) {
	assert.equal(typeof gOPD, 'function', 'descriptors supported');
	// use gOPD like Object.getOwnPropertyDescriptor here
} else {
	assert.ok(!gOPD, 'descriptors not supported');
}