Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .npmrc
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ sign-git-commit = true
sign-git-tag = true

# Run Git commit hooks when using `npm version`:
commits-hooks = true
commit-hooks = true

# Require that dependencies within the dependency tree have a minimum release age (in days) in order to guard against supply chain attacks:
min-release-age: 90
min-release-age = 90
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ var addon = require( './../src/addon.node' );
/**
* Multiplies each element in a single-precision floating-point strided array by a scalar constant and adds a scalar constant to each result using alternative indexing semantics.
*
* @private
* @param {PositiveInteger} N - number of indexed elements
* @param {number} alpha - first scalar constant
* @param {number} beta - second scalar constant
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ var addon = require( './../src/addon.node' );
/**
* Multiplies each element in a single-precision floating-point strided array by a scalar constant and adds a scalar constant to each result.
*
* @private
* @param {PositiveInteger} N - number of indexed elements
* @param {number} alpha - first scalar constant
* @param {number} beta - second scalar constant
Expand Down
Loading