Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
2A5F committed May 20, 2019
1 parent 0335365 commit 8813d5f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion batchoper.js
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ function fnOf(value) {
*/
function classOf(value) {
value = Object(value);
return new Proxy(null, {
return new Proxy({}, {
construct() {
return value;
}
Expand Down
2 changes: 1 addition & 1 deletion batchoper.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ function fnOf(value) {
*/
function classOf(value) {
value = Object(value);
return new Proxy(null, {
return new Proxy({}, {
construct() {
return value;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/batchoper.js
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@
*/
function classOf(value) {
value = Object(value);
return new Proxy(null, {
return new Proxy({}, {
construct() {
return value;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/batchoper.min.js

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

0 comments on commit 8813d5f

Please sign in to comment.