@oracle/suitecloud-unit-testing
Version:
<p align="left"><a href="#"><img width="250" src="resources/netsuite_logo_simplified.png"></a></p>
54 lines (49 loc) • 1.66 kB
JavaScript
define([], function () {
function NumberFormatter() {
/**
* @name NumberFormatter#groupSeparator
* @type {string}
* @throws {SuiteScriptError} READ_ONLY_PROPERTY when setting the property is attempted
*/
this.groupSeparator = undefined;
/**
* @name NumberFormatter#decimalSeparator
* @type {string}
* @throws {SuiteScriptError} READ_ONLY_PROPERTY when setting the property is attempted
*/
this.decimalSeparator = undefined;
/**
* @name NumberFormatter#locale
* @type {string}
* @throws {SuiteScriptError} READ_ONLY_PROPERTY when setting the property is attempted
*/
this.locale = undefined;
/**
* @name NumberFormatter#presicion
* @type {number}
* @throws {SuiteScriptError} READ_ONLY_PROPERTY when setting the property is attempted
*/
this.precision = undefined;
this.negativeNumberFormat = undefined;
/**
* @param {Object} options
* @param {Object} options.number The number to be formatted
*
* @return {string}
*/
this.format = function (options) { };
/**
* get JSON format of the object
* @governance none
* @return {Object}
*/
this.toJSON = function () { };
/**
* Returns the object type name
* @governance none
* @return {string}
*/
this.toString = function () { };
}
return new NumberFormatter();
});