1
0
mirror of https://github.com/MikeMcl/decimal.js.git synced 2024-09-30 07:20:48 +00:00
This commit is contained in:
Michael Mclaughlin 2016-02-06 17:53:18 +00:00
parent caad23d669
commit ea61253cbc
4 changed files with 9 additions and 5 deletions

View File

@ -1,3 +1,7 @@
####5.0.3
* 06/02/2015
* Refactor tests.
####5.0.2 ####5.0.2
* 05/02/2015 * 05/02/2015
* Added immutability tests. * Added immutability tests.

View File

@ -1,10 +1,10 @@
/*! decimal.js v5.0.2 https://github.com/MikeMcl/decimal.js/LICENCE */ /*! decimal.js v5.0.3 https://github.com/MikeMcl/decimal.js/LICENCE */
;(function (globalScope) { ;(function (globalScope) {
'use strict'; 'use strict';
/* /*
* decimal.js v5.0.2 * decimal.js v5.0.3
* An arbitrary-precision Decimal type for JavaScript. * An arbitrary-precision Decimal type for JavaScript.
* https://github.com/MikeMcl/decimal.js * https://github.com/MikeMcl/decimal.js
* Copyright (c) 2016 Michael Mclaughlin <M8ch88l@gmail.com> * Copyright (c) 2016 Michael Mclaughlin <M8ch88l@gmail.com>

2
decimal.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
{ {
"name": "decimal.js", "name": "decimal.js",
"description": "An arbitrary-precision Decimal type for JavaScript.", "description": "An arbitrary-precision Decimal type for JavaScript.",
"version": "5.0.2", "version": "5.0.3",
"keywords": [ "keywords": [
"arbitrary", "arbitrary",
"precision", "precision",
@ -28,6 +28,6 @@
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
"test": "node ./test/test.js", "test": "node ./test/test.js",
"build": "uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v5.0.2 https://github.com/MikeMcl/decimal.js/LICENCE */\"" "build": "uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v5.0.3 https://github.com/MikeMcl/decimal.js/LICENCE */\""
} }
} }