We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45102ed commit 2b23a57Copy full SHA for 2b23a57
README.md
@@ -51,8 +51,8 @@ Vue.use(money, {precision: 4})
51
suffix: ' #',
52
precision: 2,
53
masked: false,
54
- min: -1000000000,
55
- max: 1000000000,
+ min: Number.MIN_SAFE_INTEGER,
+ max: Number.MAX_SAFE_INTEGER,
56
}
57
58
src/options.js
@@ -4,6 +4,6 @@ export default {
4
thousands: ',',
5
decimal: '.',
6
7
8
- max: 1000000000
+ max: Number.MAX_SAFE_INTEGER
9
0 commit comments