Skip to content

Commit

Permalink
update dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
inorganik committed Feb 11, 2021
1 parent cb6455b commit 81b69b1
Show file tree
Hide file tree
Showing 3 changed files with 139 additions and 88 deletions.
4 changes: 2 additions & 2 deletions dist/countUp.umd.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
typeof define === 'function' && define.amd ? define(['exports'], factory) :
(global = global || self, factory(global.countUp = {}));
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.countUp = {}));
}(this, (function (exports) { 'use strict';

var __assign = (undefined && undefined.__assign) || function () {
Expand Down Expand Up @@ -127,7 +127,7 @@
this.startVal = this.validateValue(this.options.startVal);
this.frameVal = this.startVal;
this.endVal = this.validateValue(endVal);
this.options.decimalPlaces = Math.max( this.options.decimalPlaces);
this.options.decimalPlaces = Math.max(this.options.decimalPlaces);
this.resetDuration();
this.options.separator = String(this.options.separator);
this.useEasing = this.options.useEasing;
Expand Down
Loading

0 comments on commit 81b69b1

Please sign in to comment.