Skip to content

Commit

Permalink
minified
Browse files Browse the repository at this point in the history
  • Loading branch information
Mat Taylor authored and Mat Taylor committed Jun 13, 2023
1 parent 47d274c commit 2734ecd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions objix.js
Expand Up @@ -22,7 +22,7 @@ const
},

has(v) {
return this.some(x => v== x)
return this.some(x => v == x)
},

pick(f, r={}) {
Expand Down Expand Up @@ -62,7 +62,7 @@ const
: [O,Array].has(this[C]) ? this.map(v => (d && v) ? v.clone(d-1) : v)
: new this[C](this)
},

join(...a) {
let r = A({}, this)
for(let o of a) K(o).map(k => r[k] &&= [].concat(r[k], o[k]))
Expand Down
2 changes: 1 addition & 1 deletion objix.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "objix",
"version": "1.16.1",
"version": "1.16.2",
"description": "A dangerously convienient, high performance and super lightweight utility (2.7kb) that injects methods into the Object prototype to sugar for many common use cases working with Javascript objects.",
"main": "objix.js",
"scripts": {
Expand Down

0 comments on commit 2734ecd

Please sign in to comment.