
README.md edited online with Bitbucket Add esdoc Upgraded dependencies Fixed dependencies in readme Fix description Fixed readme 0.1.0 config.env deleted online with Bitbucket
961 lines
No EOL
30 KiB
JSON
961 lines
No EOL
30 KiB
JSON
[
|
|
{
|
|
"__docId__": 0,
|
|
"kind": "file",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "src/index.js",
|
|
"memberof": null,
|
|
"longname": "src/index.js",
|
|
"access": null,
|
|
"description": null,
|
|
"lineNumber": 1,
|
|
"content": "var packagedJson = JSON.parse(require('lzstring!./packagedJson.json'));\nvar supportedLangs = require('json!./supportedLangs.json');\n\n/**\n\t * Returns the list of supported languages\n\t * @return {Array} The list of all the supported languages\n\t */\nvar getSupportedLangs = function(){\n return supportedLangs;\n};\n\n/**\n * Returns the ISO 3166-1 list of countries translated in the language passed as a parameter\n * @param {String} lang The desired language for the translation\n * @return {Array} The countries list\n */\nvar getCountries = function(lang){\n return packagedJson.countries[lang];\n};\n\n /**\n * Returns the translation for the country code passed as a parameter in the language passed as a parameter\n * @param {String} lang The languages desired for the translation\n * @param {String} countryCode The country code for which to return the country name\n * @return {String} The translated country name\n */\nvar getCountry = function(lang, countryCode){\n return packagedJson.countries[lang][countryCode];\n};\n \n/**\n * Returns the ISO 639-1 list of languages translated in the language passed as a parameter\n * @param {String} lang The desired language for the translation\n * @return {Array} The language list\n */\nvar getLanguages = function(lang){\n return packagedJson.languages[lang];\n};\n \n/**\n * Returns the translation for the language code passed as a parameter in the language passed as a parameter\n * @param {String} lang The languages desired for the translation\n * @param {String} langCode The language code for which to return the cuntry name\n * @return {String} The translated country name\n*/\nvar getLanguage = function(lang, langCode){\n return packagedJson.languages[lang][langCode];\n};\n\nmodule.exports = {\n\t\n getSupportedLangs: getSupportedLangs,\n\n getCountries: getCountries,\n\n getCountry: getCountry,\n \n getLanguages: getLanguages,\n\n getLanguage: getLanguage\n\n};"
|
|
},
|
|
{
|
|
"__docId__": 1,
|
|
"kind": "variable",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "packagedJson",
|
|
"memberof": "src/index.js",
|
|
"longname": "src/index.js~packagedJson",
|
|
"access": null,
|
|
"export": false,
|
|
"importPath": "iso-countries-languages/src/index.js",
|
|
"importStyle": null,
|
|
"description": null,
|
|
"lineNumber": 1,
|
|
"undocument": true,
|
|
"type": {
|
|
"types": [
|
|
"*"
|
|
]
|
|
}
|
|
},
|
|
{
|
|
"__docId__": 2,
|
|
"kind": "variable",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "supportedLangs",
|
|
"memberof": "src/index.js",
|
|
"longname": "src/index.js~supportedLangs",
|
|
"access": null,
|
|
"export": false,
|
|
"importPath": "iso-countries-languages/src/index.js",
|
|
"importStyle": null,
|
|
"description": null,
|
|
"lineNumber": 2,
|
|
"undocument": true,
|
|
"type": {
|
|
"types": [
|
|
"*"
|
|
]
|
|
}
|
|
},
|
|
{
|
|
"__docId__": 3,
|
|
"kind": "function",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "getSupportedLangs",
|
|
"memberof": "src/index.js",
|
|
"longname": "src/index.js~getSupportedLangs",
|
|
"access": null,
|
|
"export": false,
|
|
"importPath": "iso-countries-languages/src/index.js",
|
|
"importStyle": null,
|
|
"description": "Returns the list of supported languages",
|
|
"lineNumber": 8,
|
|
"params": [],
|
|
"return": {
|
|
"nullable": null,
|
|
"types": [
|
|
"Array"
|
|
],
|
|
"spread": false,
|
|
"description": "The list of all the supported languages"
|
|
},
|
|
"generator": false
|
|
},
|
|
{
|
|
"__docId__": 4,
|
|
"kind": "function",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "getCountries",
|
|
"memberof": "src/index.js",
|
|
"longname": "src/index.js~getCountries",
|
|
"access": null,
|
|
"export": false,
|
|
"importPath": "iso-countries-languages/src/index.js",
|
|
"importStyle": null,
|
|
"description": "Returns the ISO 3166-1 list of countries translated in the language passed as a parameter",
|
|
"lineNumber": 17,
|
|
"params": [
|
|
{
|
|
"nullable": null,
|
|
"types": [
|
|
"String"
|
|
],
|
|
"spread": false,
|
|
"optional": false,
|
|
"name": "lang",
|
|
"description": "The desired language for the translation"
|
|
}
|
|
],
|
|
"return": {
|
|
"nullable": null,
|
|
"types": [
|
|
"Array"
|
|
],
|
|
"spread": false,
|
|
"description": "The countries list"
|
|
},
|
|
"generator": false
|
|
},
|
|
{
|
|
"__docId__": 5,
|
|
"kind": "function",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "getCountry",
|
|
"memberof": "src/index.js",
|
|
"longname": "src/index.js~getCountry",
|
|
"access": null,
|
|
"export": false,
|
|
"importPath": "iso-countries-languages/src/index.js",
|
|
"importStyle": null,
|
|
"description": "Returns the translation for the country code passed as a parameter in the language passed as a parameter",
|
|
"lineNumber": 27,
|
|
"params": [
|
|
{
|
|
"nullable": null,
|
|
"types": [
|
|
"String"
|
|
],
|
|
"spread": false,
|
|
"optional": false,
|
|
"name": "lang",
|
|
"description": "The languages desired for the translation"
|
|
},
|
|
{
|
|
"nullable": null,
|
|
"types": [
|
|
"String"
|
|
],
|
|
"spread": false,
|
|
"optional": false,
|
|
"name": "countryCode",
|
|
"description": "The country code for which to return the country name"
|
|
}
|
|
],
|
|
"return": {
|
|
"nullable": null,
|
|
"types": [
|
|
"String"
|
|
],
|
|
"spread": false,
|
|
"description": "The translated country name"
|
|
},
|
|
"generator": false
|
|
},
|
|
{
|
|
"__docId__": 6,
|
|
"kind": "function",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "getLanguages",
|
|
"memberof": "src/index.js",
|
|
"longname": "src/index.js~getLanguages",
|
|
"access": null,
|
|
"export": false,
|
|
"importPath": "iso-countries-languages/src/index.js",
|
|
"importStyle": null,
|
|
"description": "Returns the ISO 639-1 list of languages translated in the language passed as a parameter",
|
|
"lineNumber": 36,
|
|
"params": [
|
|
{
|
|
"nullable": null,
|
|
"types": [
|
|
"String"
|
|
],
|
|
"spread": false,
|
|
"optional": false,
|
|
"name": "lang",
|
|
"description": "The desired language for the translation"
|
|
}
|
|
],
|
|
"return": {
|
|
"nullable": null,
|
|
"types": [
|
|
"Array"
|
|
],
|
|
"spread": false,
|
|
"description": "The language list"
|
|
},
|
|
"generator": false
|
|
},
|
|
{
|
|
"__docId__": 7,
|
|
"kind": "function",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "getLanguage",
|
|
"memberof": "src/index.js",
|
|
"longname": "src/index.js~getLanguage",
|
|
"access": null,
|
|
"export": false,
|
|
"importPath": "iso-countries-languages/src/index.js",
|
|
"importStyle": null,
|
|
"description": "Returns the translation for the language code passed as a parameter in the language passed as a parameter",
|
|
"lineNumber": 46,
|
|
"params": [
|
|
{
|
|
"nullable": null,
|
|
"types": [
|
|
"String"
|
|
],
|
|
"spread": false,
|
|
"optional": false,
|
|
"name": "lang",
|
|
"description": "The languages desired for the translation"
|
|
},
|
|
{
|
|
"nullable": null,
|
|
"types": [
|
|
"String"
|
|
],
|
|
"spread": false,
|
|
"optional": false,
|
|
"name": "langCode",
|
|
"description": "The language code for which to return the cuntry name"
|
|
}
|
|
],
|
|
"return": {
|
|
"nullable": null,
|
|
"types": [
|
|
"String"
|
|
],
|
|
"spread": false,
|
|
"description": "The translated country name"
|
|
},
|
|
"generator": false
|
|
},
|
|
{
|
|
"__docId__": 9,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "Infinity",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Infinity",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~Infinity",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 10,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "NaN",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/NaN",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~NaN",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 11,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "undefined",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/undefined",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~undefined",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 12,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "null",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/null",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~null",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 13,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "Object",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~Object",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 14,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "object",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~object",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 15,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "Function",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~Function",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 16,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "function",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~function",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 17,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "Boolean",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~Boolean",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 18,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "boolean",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~boolean",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 19,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "Symbol",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~Symbol",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 20,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "Error",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~Error",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 21,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "EvalError",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/EvalError",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~EvalError",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 22,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "InternalError",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/InternalError",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~InternalError",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 23,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "RangeError",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RangeError",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~RangeError",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 24,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "ReferenceError",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ReferenceError",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~ReferenceError",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 25,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "SyntaxError",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SyntaxError",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~SyntaxError",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 26,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "TypeError",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypeError",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~TypeError",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 27,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "URIError",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/URIError",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~URIError",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 28,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "Number",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~Number",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 29,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "number",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~number",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 30,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "Date",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~Date",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 31,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "String",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~String",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 32,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "string",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~string",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 33,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "RegExp",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~RegExp",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 34,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "Array",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~Array",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 35,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "Int8Array",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int8Array",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~Int8Array",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 36,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "Uint8Array",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~Uint8Array",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 37,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "Uint8ClampedArray",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8ClampedArray",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~Uint8ClampedArray",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 38,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "Int16Array",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int16Array",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~Int16Array",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 39,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "Uint16Array",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint16Array",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~Uint16Array",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 40,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "Int32Array",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int32Array",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~Int32Array",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 41,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "Uint32Array",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint32Array",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~Uint32Array",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 42,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "Float32Array",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float32Array",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~Float32Array",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 43,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "Float64Array",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float64Array",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~Float64Array",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 44,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "Map",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~Map",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 45,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "Set",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~Set",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 46,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "WeakMap",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~WeakMap",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 47,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "WeakSet",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~WeakSet",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 48,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "ArrayBuffer",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~ArrayBuffer",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 49,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "DataView",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~DataView",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 50,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "JSON",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~JSON",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 51,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "Promise",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~Promise",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 52,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "Generator",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Generator",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~Generator",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 53,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "GeneratorFunction",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/GeneratorFunction",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~GeneratorFunction",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 54,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "Reflect",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~Reflect",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 55,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "Proxy",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy",
|
|
"memberof": "BuiltinExternal/ECMAScriptExternal.js",
|
|
"longname": "BuiltinExternal/ECMAScriptExternal.js~Proxy",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 57,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "CanvasRenderingContext2D",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D",
|
|
"memberof": "BuiltinExternal/WebAPIExternal.js",
|
|
"longname": "BuiltinExternal/WebAPIExternal.js~CanvasRenderingContext2D",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 58,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "DocumentFragment",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment",
|
|
"memberof": "BuiltinExternal/WebAPIExternal.js",
|
|
"longname": "BuiltinExternal/WebAPIExternal.js~DocumentFragment",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 59,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "Element",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/API/Element",
|
|
"memberof": "BuiltinExternal/WebAPIExternal.js",
|
|
"longname": "BuiltinExternal/WebAPIExternal.js~Element",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 60,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "Event",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/API/Event",
|
|
"memberof": "BuiltinExternal/WebAPIExternal.js",
|
|
"longname": "BuiltinExternal/WebAPIExternal.js~Event",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 61,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "Node",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/API/Node",
|
|
"memberof": "BuiltinExternal/WebAPIExternal.js",
|
|
"longname": "BuiltinExternal/WebAPIExternal.js~Node",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 62,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "NodeList",
|
|
"externalLink": "https://developer.mozilla.org/en-US/docs/Web/API/NodeList",
|
|
"memberof": "BuiltinExternal/WebAPIExternal.js",
|
|
"longname": "BuiltinExternal/WebAPIExternal.js~NodeList",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 63,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "XMLHttpRequest",
|
|
"externalLink": "https://developer.mozilla.org/en/docs/Web/API/XMLHttpRequest",
|
|
"memberof": "BuiltinExternal/WebAPIExternal.js",
|
|
"longname": "BuiltinExternal/WebAPIExternal.js~XMLHttpRequest",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
},
|
|
{
|
|
"__docId__": 64,
|
|
"kind": "external",
|
|
"static": true,
|
|
"variation": null,
|
|
"name": "AudioContext",
|
|
"externalLink": "https://developer.mozilla.org/en/docs/Web/API/AudioContext",
|
|
"memberof": "BuiltinExternal/WebAPIExternal.js",
|
|
"longname": "BuiltinExternal/WebAPIExternal.js~AudioContext",
|
|
"access": null,
|
|
"description": "",
|
|
"builtinExternal": true
|
|
}
|
|
] |