From 75ac4522be156d23e6c61e85e0e62161f6e65f63 Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Fri, 5 Jul 2024 01:27:54 +0200 Subject: [PATCH] Change package name --- README.md | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 43b9707..92da8a8 100644 --- a/README.md +++ b/README.md @@ -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 = {}; diff --git a/package.json b/package.json index f3090cb..0919348 100644 --- a/package.json +++ b/package.json @@ -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",