Change package name

master
Sven Slootweg 2 months ago
parent 46a87dfc0d
commit 75ac4522be

@ -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,5 +1,5 @@
{
"name": "objid",
"name": "@joepie91/objid",
"version": "1.0.0",
"description": "Small debugging utility that assigns unique IDs to objects without polluting them",
"main": "index.js",

Loading…
Cancel
Save