Skip to content

Commit

Permalink
build: v1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
adriancmiranda committed Dec 12, 2017
1 parent 772a58d commit a01d0cb
Show file tree
Hide file tree
Showing 12 changed files with 33 additions and 33 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Proto",
"version": "1.1.2",
"version": "1.1.3",
"main": ["dist/Proto.umd.js", "dist/Proto.umd.min.js", "dist/Proto.umd.min.js.map"],
"license": "MIT",
"private": true,
Expand Down
12 changes: 6 additions & 6 deletions dist/Proto.amd.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*!
*
* ~~~~ Proto v1.1.1
* ~~~~ Proto v1.1.3
*
* @commit bcd21375d596f3b83cb8803da46504ae0ccb2d01
* @moment Tuesday, December 12, 2017 7:09 AM
* @commit 772a58dfbc0ea70022b22d235ff3d7d9e7e11b72
* @moment Tuesday, December 12, 2017 7:34 AM
* @homepage https://github.com/adriancmiranda/Proto
* @author Adrian C. Miranda
* @license (c) 2016-2020 Adrian C. Miranda
Expand Down Expand Up @@ -365,10 +365,10 @@ define(function () { 'use strict';
*/
function eachProperty(value, cmd, context, getEnum) {
var i = 0;
var isCallable = callable(value);
var readStatics = callable(value) === false;
for (var key in value) {
if (getEnum || ownProperty(value, key)) {
var response = resolveProperty(value, key, isCallable, cmd, context, i += 1);
var response = resolveProperty(value, key, readStatics, cmd, context, i += 1);
if (response !== undefined) {
return response;
}
Expand Down Expand Up @@ -808,7 +808,7 @@ define(function () { 'use strict';
return Proto.extends(parent, protoProps, staticProps);
}

Proto.VERSION = '1.1.1';
Proto.VERSION = '1.1.3';
Proto.size = 0;
Proto.create = create;
Proto.each = each;
Expand Down
8 changes: 4 additions & 4 deletions dist/Proto.amd.min.js

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

Binary file modified dist/Proto.amd.min.js.gz
Binary file not shown.
12 changes: 6 additions & 6 deletions dist/Proto.iife.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*!
*
* ~~~~ Proto v1.1.1
* ~~~~ Proto v1.1.3
*
* @commit bcd21375d596f3b83cb8803da46504ae0ccb2d01
* @moment Tuesday, December 12, 2017 7:09 AM
* @commit 772a58dfbc0ea70022b22d235ff3d7d9e7e11b72
* @moment Tuesday, December 12, 2017 7:34 AM
* @homepage https://github.com/adriancmiranda/Proto
* @author Adrian C. Miranda
* @license (c) 2016-2020 Adrian C. Miranda
Expand Down Expand Up @@ -366,10 +366,10 @@ var Proto = (function () {
*/
function eachProperty(value, cmd, context, getEnum) {
var i = 0;
var isCallable = callable(value);
var readStatics = callable(value) === false;
for (var key in value) {
if (getEnum || ownProperty(value, key)) {
var response = resolveProperty(value, key, isCallable, cmd, context, i += 1);
var response = resolveProperty(value, key, readStatics, cmd, context, i += 1);
if (response !== undefined) {
return response;
}
Expand Down Expand Up @@ -809,7 +809,7 @@ var Proto = (function () {
return Proto.extends(parent, protoProps, staticProps);
}

Proto.VERSION = '1.1.1';
Proto.VERSION = '1.1.3';
Proto.size = 0;
Proto.create = create;
Proto.each = each;
Expand Down
Loading

0 comments on commit a01d0cb

Please sign in to comment.