Skip to content

Commit 61589e0

Browse files
committed
fix: add missing imports
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 63b7891 commit 61589e0

File tree

1 file changed

+4
-2
lines changed
  • lib/node_modules/@stdlib/ndarray/base/every-by/lib

1 file changed

+4
-2
lines changed

lib/node_modules/@stdlib/ndarray/base/every-by/lib/main.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ var EVERY = [
8080
every7d,
8181
every8d,
8282
every9d,
83-
every10d
83+
every10d,
84+
everynd
8485
];
8586
var ACCESSOR_EVERY = [
8687
accessorevery0d,
@@ -93,7 +94,8 @@ var ACCESSOR_EVERY = [
9394
accessorevery7d,
9495
accessorevery8d,
9596
accessorevery9d,
96-
accessorevery10d
97+
accessorevery10d,
98+
accessoreverynd
9799
];
98100
var BLOCKED_EVERY = [
99101
blockedevery2d, // 0

0 commit comments

Comments
 (0)