From 553d2162a08d63cda55cb2ccd1d435ad4c4e59b5 Mon Sep 17 00:00:00 2001 From: Ariyan Khan Date: Fri, 28 Jul 2017 15:12:45 +0530 Subject: [PATCH] Build --- dist/belofte.js | 6 ++---- src/belofte.js | 2 -- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/dist/belofte.js b/dist/belofte.js index d2f67bc..d234b23 100644 --- a/dist/belofte.js +++ b/dist/belofte.js @@ -1,5 +1,5 @@ /*! - * Belofte.js v1.0.0 + * Belofte.js v1.2.0 * A lightweight Promises/A+ compliant implementation of ECMAScript Promise API. * Here the Belofte is an Afrikaans word, It means Promise. * This library is very useful for old browsers or old Javascript engines where @@ -9,7 +9,7 @@ * * Codebase: https://github.com/ariyankhan/belofte.js * Homepage: https://github.com/ariyankhan/belofte.js#readme - * Date: Fri Jul 28 2017 03:46:09 GMT+0530 (IST) + * Date: Fri Jul 28 2017 15:12:17 GMT+0530 (IST) */ (function(root, factory) { @@ -581,7 +581,6 @@ } }); - Belofte.extend(Promise.prototype, { then: function(onFulfilled, onRejected) { @@ -645,7 +644,6 @@ }); - var Deferred = function Deferred() { this.promise = new Promise(emptyFn); }; diff --git a/src/belofte.js b/src/belofte.js index c245171..c932897 100644 --- a/src/belofte.js +++ b/src/belofte.js @@ -566,7 +566,6 @@ } }); - Belofte.extend(Promise.prototype, { then: function (onFulfilled, onRejected) { @@ -630,7 +629,6 @@ }); - var Deferred = function Deferred() { this.promise = new Promise(emptyFn); };