Compare commits

...

2 Commits

Author SHA1 Message Date
Sven Slootweg 4fe3f7f97f 1.0.1 6 months ago
Sven Slootweg 75ac4522be Change package name 6 months ago

@ -1,4 +1,4 @@
# objid
# @joepie91/objid
Tiny development utility. Assigns a unique ID to every object you give it, that persists for the lifetime of that object. Requires WeakMap support (to ensure it doesn't cause memory leaks by preventing garbage collection).
@ -9,7 +9,7 @@ Particularly useful for eg. logging debug messages that may relate to any number
```js
"use strict";
const objid = require("objid");
const objid = require("@joepie91/objid");
let a = {};
let b = {};

@ -1,6 +1,6 @@
{
"name": "objid",
"version": "1.0.0",
"name": "@joepie91/objid",
"version": "1.0.1",
"description": "Small debugging utility that assigns unique IDs to objects without polluting them",
"main": "index.js",
"files": [
@ -14,7 +14,12 @@
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": ["debugging", "object", "identifier", "unique"],
"keywords": [
"debugging",
"object",
"identifier",
"unique"
],
"author": "Sven Slootweg <admin@cryto.net>",
"license": "WTFPL OR CC0-1.0"
}

Loading…
Cancel
Save