Skip to content

Commit

Permalink
Updating build for ts1.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
BSick7 committed Sep 24, 2015
1 parent 64811a5 commit d84c53a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions dist/fayde.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@ if (!Function.prototype.bind) {
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
__.prototype = b.prototype;
d.prototype = new __();
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var Fayde;
(function (Fayde) {
Expand Down
2 changes: 1 addition & 1 deletion dist/fayde.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"gulp-sourcemaps": "^1.5.1",
"gulp-symlink": "^2.1.0",
"gulp-task-listing": "^1.0.1",
"gulp-typescript": "^2.6.0",
"gulp-typescript": "2.9.0",
"gulp-uglify": "^1.2.0",
"merge2": "^0.3.3",
"run-sequence": "^1.0.2",
Expand Down
2 changes: 1 addition & 1 deletion src/polyfill/Array_isArray.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
if (!Array.isArray) {
Array.isArray = function(arg) {
Array.isArray = (arg: any): arg is Array<any> => {
return Object.prototype.toString.call(arg) === '[object Array]';
};
}

0 comments on commit d84c53a

Please sign in to comment.