Skip to content

Commit

Permalink
src: update build
Browse files Browse the repository at this point in the history
  • Loading branch information
Mickael Daniel committed Sep 30, 2016
1 parent 9cf1295 commit 1c5619d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/complete.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol ? "symbol" : typeof obj; };
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };

var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();

Expand Down Expand Up @@ -79,7 +79,7 @@ var Complete = function (_EventEmitter) {
function Complete(options) {
_classCallCheck(this, Complete);

var _this = _possibleConstructorReturn(this, Object.getPrototypeOf(Complete).call(this));
var _this = _possibleConstructorReturn(this, (Complete.__proto__ || Object.getPrototypeOf(Complete)).call(this));

_this.options = options || _this.defaults;
_this.options.name = _this.options.name || _this.resolve('name');
Expand Down

0 comments on commit 1c5619d

Please sign in to comment.