From 70058de1579fc54d1d15ed6c2dbe246637ce70ff Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Mon, 30 Nov 2020 22:47:02 -0800 Subject: [PATCH] [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `core-js` --- index.js | 2 +- package.json | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.js b/index.js index f78aff1..e1632c3 100644 --- a/index.js +++ b/index.js @@ -69,7 +69,7 @@ module.exports = function inspect_(obj, options, depth, seen) { } return String(obj); } - if (typeof obj === 'bigint') { // eslint-disable-line valid-typeof + if (typeof obj === 'bigint') { return String(obj) + 'n'; } diff --git a/package.json b/package.json index 41355a1..448e117 100644 --- a/package.json +++ b/package.json @@ -4,10 +4,10 @@ "description": "string representations of objects in node and the browser", "main": "index.js", "devDependencies": { - "@ljharb/eslint-config": "^17.2.0", - "aud": "^1.1.2", - "core-js": "^2.6.11", - "eslint": "^7.12.1", + "@ljharb/eslint-config": "^17.3.0", + "aud": "^1.1.3", + "core-js": "^2.6.12", + "eslint": "^7.14.0", "for-each": "^0.3.3", "nyc": "^10.3.2", "safe-publish-latest": "^1.1.4",