Skip to content

Commit 06f938e

Browse files
committed
Remove @access public from exported functions
1 parent e00246a commit 06f938e

File tree

4 files changed

+0
-4
lines changed

4 files changed

+0
-4
lines changed

src/formatMoney.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ import { formatNumber } from './formatNumber';
2626
* // => 5,318,008.00 GBP
2727
* ```
2828
*
29-
* @access public
3029
* @param {Number} amount - Amount to be formatted
3130
* @param {Object} [opts={}] - Object containing all the options of the method
3231
* @return {String} - Given number properly formatted as money

src/formatNumber.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import { toFixed } from './toFixed';
1818
* // => 9 876 543.210
1919
* ```
2020
*
21-
* @access public
2221
* @param {Number} number - Number to be formatted
2322
* @param {Object} [opts={}] - Object containing all the options of the method
2423
* @return {String} - Given number properly formatted

src/toFixed.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import { settings } from './settings';
1818
* // => '0.62'
1919
* ```
2020
*
21-
* @access public
2221
* @param {Float} value - Float to be treated as a decimal number
2322
* @param {Number} [precision=settings.precision] - Number of decimal digits to keep
2423
* @param {Number} [round=settings.round] - Decide round direction

src/unformat.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import { settings } from './settings';
1919
* // => 12345678.9
2020
* ```
2121
*
22-
* @access public
2322
* @param {String} value - String containing the number to parse
2423
* @param {String} [decimal=settings.decimal] - The character used to represent the decimal separator
2524
* @param {Float} [fallback=settings.fallback] - Value returned on unformat() failure

0 commit comments

Comments
 (0)