diff options
Diffstat (limited to 'src/manipulation/wrapMap.js')
-rw-r--r-- | src/manipulation/wrapMap.js | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/manipulation/wrapMap.js b/src/manipulation/wrapMap.js index 065225928..01937ecc3 100644 --- a/src/manipulation/wrapMap.js +++ b/src/manipulation/wrapMap.js @@ -1,7 +1,3 @@ -define( function() { - -"use strict"; - // We have to close these tags to support XHTML (#13200) var wrapMap = { @@ -21,5 +17,4 @@ var wrapMap = { wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; wrapMap.th = wrapMap.td; -return wrapMap; -} ); +export default wrapMap; |