diff --git a/lib/lang/type-of.js b/lib/lang/type-of.js index 364179f..7226f78 100644 --- a/lib/lang/type-of.js +++ b/lib/lang/type-of.js @@ -15,7 +15,6 @@ module.exports = function typeOf(value) { return parts[1].toLowerCase() } - /** * A more accurate version of the javascript built-in function typeof * Date strings in ISO format are special cased to identify as `'date'` diff --git a/lib/parser/tokens.js b/lib/parser/tokens.js index f028225..cf6978e 100644 --- a/lib/parser/tokens.js +++ b/lib/parser/tokens.js @@ -27,7 +27,6 @@ const HASH = createToken({ , pattern: /#/ }) - const IDENTIFIER = createToken({ name: 'identifier' , pattern: /\w+/ diff --git a/package.json b/package.json index c554c21..04c9e38 100644 --- a/package.json +++ b/package.json @@ -66,7 +66,7 @@ "eslint": "^7.26.0", "eslint-config-logdna": "^5.0.0", "moment": "^2.29.1", - "semantic-release": "^17.4.2", + "semantic-release": "^17.4.4", "semantic-release-config-logdna": "^1.3.0", "tap": "^15.0.9", "tap-parser": "^10.1.0", diff --git a/test/unit/chain.js b/test/unit/chain.js index 6896a9f..865d0d0 100644 --- a/test/unit/chain.js +++ b/test/unit/chain.js @@ -196,5 +196,4 @@ test('chain', async (t) => { }, 'internal state reset') }) - }).catch(threw)