1
0
mirror of https://github.com/MikeMcl/decimal.js.git synced 2024-10-27 20:34:12 +00:00
This commit is contained in:
Michael Mclaughlin 2017-01-10 19:34:40 +00:00
parent 27de48c4c3
commit 45eec0b863
9 changed files with 19 additions and 11 deletions

View File

@ -1,2 +1,3 @@
test test
excluded excluded
.*

View File

@ -1,3 +1,8 @@
#### 7.1.1
* 10/01/2017
* Remove duplicated for-loop
* Minor refactoring
#### 7.1.0 #### 7.1.0
* 09/11/2016 * 09/11/2016
* Support ES6 imports. * Support ES6 imports.

View File

@ -1,6 +1,6 @@
The MIT Licence. The MIT Licence.
Copyright (c) 2016 Michael Mclaughlin Copyright (c) 2016, 2017 Michael Mclaughlin
Permission is hereby granted, free of charge, to any person obtaining Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the a copy of this software and associated documentation files (the

View File

@ -221,7 +221,9 @@ will create *decimal.min.js*, and a source map will also be added to the *doc* d
<a href='mailto:M8ch88l@gmail.com'>M8ch88l@gmail.com</a> <a href='mailto:M8ch88l@gmail.com'>M8ch88l@gmail.com</a>
BTC 16MjxmTB5EZxY5Uk9xyhfsu4n9gYxEJYkY **BTC** 16MjxmTB5EZxY5Uk9xyhfsu4n9gYxEJYkY
**Monero** 4B7GE8BUQ5dHjHxVubTDmsTn4bUYWG6bsRXQwunDifX6hcNAfkmGxcZYQGbpYgArKLNxfA15LK2j6bUENiE9eTHRAWkEB5R
## Licence ## Licence

View File

@ -1,7 +1,7 @@
{ {
"name": "decimal.js", "name": "decimal.js",
"main": "decimal.js", "main": "decimal.js",
"version": "7.1.0", "version": "7.1.1",
"homepage": "https://github.com/MikeMcl/decimal.js", "homepage": "https://github.com/MikeMcl/decimal.js",
"authors": [ "authors": [
"Michael Mclaughlin <M8ch88l@gmail.com>" "Michael Mclaughlin <M8ch88l@gmail.com>"

View File

@ -1,10 +1,10 @@
/*! decimal.js v7.1.0 https://github.com/MikeMcl/decimal.js/LICENCE */ /*! decimal.js v7.1.1 https://github.com/MikeMcl/decimal.js/LICENCE */
;(function (globalScope) { ;(function (globalScope) {
'use strict'; 'use strict';
/* /*
* decimal.js v7.1.0 * decimal.js v7.1.1
* 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>

4
decimal.min.js vendored

File diff suppressed because one or more lines are too long

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": "7.1.0", "version": "7.1.1",
"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 v7.1.0 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 v7.1.1 https://github.com/MikeMcl/decimal.js/LICENCE */\""
} }
} }