Skip to content

Commit

Permalink
Changes asked in code review
Browse files Browse the repository at this point in the history
  • Loading branch information
stephane-m-dev committed Sep 16, 2024
1 parent 34106e4 commit 32a6769
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion @xen-orchestra/defined/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// ])
// ```
function defined() {
const args = [...arguments].flat()
const args = [].concat.apply([], arguments)
const n = args.length

for (let i = 0; i < n; ++i) {
Expand Down
3 changes: 2 additions & 1 deletion @xen-orchestra/defined/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"node": ">=6"
},
"scripts": {
"postversion": "npm publish"
"postversion": "npm publish",
"test": "node --test"
}
}
1 change: 0 additions & 1 deletion CHANGELOG.unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
<!--packages-start-->

- @xen-orchestra/defined minor
- @xen-orchestra/lite minor
- @xen-orchestra/web minor
- @xen-orchestra/web-core minor
Expand Down

0 comments on commit 32a6769

Please sign in to comment.