UNPKG

@oracle/suitecloud-unit-testing

Version:

<p align="left"><a href="#"><img width="250" src="resources/netsuite_logo_simplified.png"></a></p>

25 lines (22 loc) 681 B
define([], function() { /** * Translations.Handle has a hierarchical structure. * * Each of its nodes is either another Handle or a translator function */ function Handle() { /** * JSON.stringify() implementation. * * @returns {{type: string, allRawTranslations: Object, allTranslations: Object, locales: Array, recentLocale: Locale}} */ this.toJSON = function () { }; /** * Returns the object type name (translations.Handle) * * @returns {string} */ this.toString = function () { }; } return new Handle(); });