diff options
Diffstat (limited to 'src/manipulation/getAll.js')
-rw-r--r-- | src/manipulation/getAll.js | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/manipulation/getAll.js b/src/manipulation/getAll.js index 89634d694..995d22c0c 100644 --- a/src/manipulation/getAll.js +++ b/src/manipulation/getAll.js @@ -1,9 +1,5 @@ -define( [ - "../core", - "../core/nodeName" -], function( jQuery, nodeName ) { - -"use strict"; +import jQuery from "../core.js"; +import nodeName from "../core/nodeName.js"; function getAll( context, tag ) { @@ -28,5 +24,4 @@ function getAll( context, tag ) { return ret; } -return getAll; -} ); +export default getAll; |