You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
413 B
JavaScript
11 lines
413 B
JavaScript
import _parseNumber from '../parse.js';
|
|
import normalizeArguments from '../normalizeArguments.js';
|
|
export default function parseNumber() {
|
|
var _normalizeArguments = normalizeArguments(arguments),
|
|
text = _normalizeArguments.text,
|
|
options = _normalizeArguments.options,
|
|
metadata = _normalizeArguments.metadata;
|
|
|
|
return _parseNumber(text, options, metadata);
|
|
}
|
|
//# sourceMappingURL=parse.js.map
|