Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

math.clz32

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

math.clz32 - npm Package Compare versions

Comparing version
1.0.1
to
1.0.2
+0
-13
.eslintrc

@@ -7,6 +7,2 @@ {

"rules": {
"array-bracket-newline": 0,
"func-name-matching": 0,
"id-length": 0,
"max-statements": 0,
"new-cap": [2, {

@@ -21,4 +17,2 @@ "capIsNewExceptions": [

}],
"no-negated-condition": 0,
"operator-linebreak": [2, "before"],
},

@@ -28,11 +22,4 @@

{
"files": "**/*.mjs",
"rules": {
"no-restricted-exports": 0,
},
},
{
"files": "test/**/*",
"rules": {
"max-lines-per-function": 0,
"no-magic-numbers": 0,

@@ -39,0 +26,0 @@ },

+14
-0

@@ -8,2 +8,16 @@ # Changelog

## [v1.0.2](https://github.com/es-shims/Math.clz32/compare/v1.0.1...v1.0.2) - 2022-11-04
### Commits
- [actions] reuse common workflows [`7f49680`](https://github.com/es-shims/Math.clz32/commit/7f49680f34234ba520eccc8900faa500b487dd55)
- [meta] fix package.json indentation [`09282be`](https://github.com/es-shims/Math.clz32/commit/09282be2a87f915aa333821fa59bada8702b2490)
- [meta] use `npmignore` to autogenerate an npmignore file [`b758614`](https://github.com/es-shims/Math.clz32/commit/b7586149334fcf9ac1500cd630788875e361909c)
- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `@es-shims/api`, `reflect.ownkeys`, `safe-publish-latest`, `tape` [`2fb41cd`](https://github.com/es-shims/Math.clz32/commit/2fb41cd79137cc105c14f54242ef699a6b1634e3)
- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `functions-have-names`, `tape` [`180d6cc`](https://github.com/es-shims/Math.clz32/commit/180d6cc7c110fca49a9f6c757f915a03087121b5)
- [actions] update codecov uploader [`fa514e7`](https://github.com/es-shims/Math.clz32/commit/fa514e772ea7c870af403556751959731bcf57cf)
- [actions] update rebase action to use reusable workflow [`4a53349`](https://github.com/es-shims/Math.clz32/commit/4a5334953d889694b6fb95afc4998d78f7fc29af)
- [Deps] update `es-abstract` [`cdaa47d`](https://github.com/es-shims/Math.clz32/commit/cdaa47df2d6e2a3ce7d4fe21a249740f1a42a339)
- [Deps] update `es-abstract` [`ea68b6f`](https://github.com/es-shims/Math.clz32/commit/ea68b6fe92902c8cab64a82b68dc6dd6131203e9)
## [v1.0.1](https://github.com/es-shims/Math.clz32/compare/v1.0.0...v1.0.1) - 2021-10-02

@@ -10,0 +24,0 @@

+2
-2
'use strict';
var ToUint32 = require('es-abstract/2021/ToUint32');
var Call = require('es-abstract/2021/Call');
var ToUint32 = require('es-abstract/2022/ToUint32');
var Call = require('es-abstract/2022/Call');

@@ -6,0 +6,0 @@ var $Number = Number;

{
"name": "math.clz32",
"version": "1.0.1",
"description": "An ES-spec-compliant Math.clz32 shim/polyfill/replacement that works as far down as ES3",
"main": "index.js",
"exports": {
".": [
{
"import": "./index.mjs",
"require": "./index.js",
"default": "./index.js"
},
"./index.js"
],
"./polyfill": "./polyfill.js",
"./implementation": "./implementation.js",
"./shim": "./shim.js",
"./auto": "./auto.js",
"./package.json": "./package.json"
},
"scripts": {
"prepublish": "safe-publish-latest",
"pretest": "npm run lint",
"lint": "eslint --ext=js,mjs .",
"postlint": "es-shim-api --bound",
"tests-only": "nyc tape 'test/**/*.js'",
"tests-esm": "nyc node test/index.mjs",
"test": "npm run tests-only && npm run tests-esm",
"posttest": "aud --production",
"version": "auto-changelog && git add CHANGELOG.md",
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/es-shims/Math.clz32.git"
},
"keywords": [
"Math",
"clz32",
"Math.clz32",
"shim",
"polyfill",
"es-shim",
"API"
],
"author": "Nicolò Ribaudo <nicolo.ribaudo@gmail.com>",
"funding": {
"url": "https://github.com/es-shims/Math.clz32?sponsor=1"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/es-shims/Math.clz32/issues"
},
"homepage": "https://github.com/es-shims/Math.clz32#readme",
"devDependencies": {
"@es-shims/api": "^2.2.1",
"@ljharb/eslint-config": "^18.0.0",
"aud": "^1.1.5",
"auto-changelog": "^2.3.0",
"eslint": "^7.32.0",
"functions-have-names": "^1.2.2",
"has-strict-mode": "^1.0.1",
"nyc": "^10.3.2",
"reflect.ownkeys": "^1.0.2",
"safe-publish-latest": "^1.1.4",
"tape": "^5.3.1"
},
"dependencies": {
"define-properties": "^1.1.3",
"es-abstract": "^1.19.0"
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "keepachangelog",
"unreleased": false,
"commitLimit": false,
"backfillLimit": false,
"hideCredit": true
}
"name": "math.clz32",
"version": "1.0.2",
"description": "An ES-spec-compliant Math.clz32 shim/polyfill/replacement that works as far down as ES3",
"main": "index.js",
"exports": {
".": [
{
"import": "./index.mjs",
"require": "./index.js",
"default": "./index.js"
},
"./index.js"
],
"./polyfill": "./polyfill.js",
"./implementation": "./implementation.js",
"./shim": "./shim.js",
"./auto": "./auto.js",
"./package.json": "./package.json"
},
"scripts": {
"prepack": "npmignore --auto --commentLines=autogenerated",
"prepublishOnly": "safe-publish-latest",
"prepublish": "not-in-publish || npm run prepublishOnly",
"pretest": "npm run lint",
"lint": "eslint --ext=js,mjs .",
"postlint": "es-shim-api --bound",
"tests-only": "nyc tape 'test/**/*.js'",
"tests-esm": "nyc node test/index.mjs",
"test": "npm run tests-only && npm run tests-esm",
"posttest": "aud --production",
"version": "auto-changelog && git add CHANGELOG.md",
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/es-shims/Math.clz32.git"
},
"keywords": [
"Math",
"clz32",
"Math.clz32",
"shim",
"polyfill",
"es-shim",
"API"
],
"author": "Nicolò Ribaudo <nicolo.ribaudo@gmail.com>",
"funding": {
"url": "https://github.com/es-shims/Math.clz32?sponsor=1"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/es-shims/Math.clz32/issues"
},
"homepage": "https://github.com/es-shims/Math.clz32#readme",
"devDependencies": {
"@es-shims/api": "^2.2.3",
"@ljharb/eslint-config": "^21.0.0",
"aud": "^2.0.1",
"auto-changelog": "^2.4.0",
"eslint": "=8.8.0",
"functions-have-names": "^1.2.3",
"has-strict-mode": "^1.0.1",
"in-publish": "^2.0.1",
"npmignore": "^0.3.0",
"nyc": "^10.3.2",
"reflect.ownkeys": "^1.1.0",
"safe-publish-latest": "^2.0.0",
"tape": "^5.6.1"
},
"dependencies": {
"define-properties": "^1.1.4",
"es-abstract": "^1.20.4"
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "keepachangelog",
"unreleased": false,
"commitLimit": false,
"backfillLimit": false,
"hideCredit": true
},
"publishConfig": {
"ignore": [
".github/workflows"
]
}
}

Sorry, the diff of this file is not supported yet