Skip to content

Commit

Permalink
add export * as ns support data
Browse files Browse the repository at this point in the history
  • Loading branch information
JLHwung committed Jul 13, 2020
1 parent c12aa89 commit 930b317
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions javascript/statements.json
Original file line number Diff line number Diff line change
Expand Up @@ -796,6 +796,72 @@
"deprecated": false
}
}
},
"namespace": {
"__compat": {
"description": "<code>export * as ns</code>",
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/export",
"spec_url": "https://tc39.es/ecma262/#sec-exports",
"support": {
"chrome": {
"version_added": "72"
},
"chrome_android": {
"version_added": "72"
},
"edge": {
"version_added": "79"
},
"firefox": {
"version_added": false
},
"firefox_android": {
"version_added": false
},
"ie": {
"version_added": false
},
"nodejs": [
{
"version_added": "13.2.0",
"notes": "Modules must either have a filename ending in <code>.mjs</code>, or the nearest parent <code>package.json</code> file must contain <code>\"type\": \"module\"</code>. See Node's <a href='https://nodejs.org/api/esm.html#esm_enabling'>ECMAScript Modules documentation</a> for more details."
},
{
"version_added": "12.0.0",
"flags": [
{
"name": "--experimental-modules",
"type": "runtime_flag"
}
],
"notes": "Modules must either have a filename ending in <code>.mjs</code>, or the nearest parent <code>package.json</code> file must contain <code>\"type\": \"module\"</code>. See Node's <a href='https://nodejs.org/docs/latest-v12.x/api/esm.html#esm_enabling'>ECMAScript Modules documentation</a> for more details."
}
],
"opera": {
"version_added": "51"
},
"opera_android": {
"version_added": "51"
},
"safari": {
"version_added": false
},
"safari_ios": {
"version_added": false
},
"samsunginternet_android": {
"version_added": "11.0"
},
"webview_android": {
"version_added": false
}
},
"status": {
"experimental": false,
"standard_track": true,
"deprecated": false
}
}
}
},
"for": {
Expand Down

0 comments on commit 930b317

Please sign in to comment.