aboutsummaryrefslogtreecommitdiffstats
path: root/src/svg.js
diff options
context:
space:
mode:
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2018-11-24 14:35:14 +0100
committerUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2018-11-24 14:35:14 +0100
commitf5413db6783d197ed5e7967957e89833a7d3c173 (patch)
tree378e0b45426d450cb1a1d4a75d872450e50f1687 /src/svg.js
parent858f19e9f8b9ba26eee8d3aeb8ba8b5b5058472b (diff)
downloadsvg.js-f5413db6783d197ed5e7967957e89833a7d3c173.tar.gz
svg.js-f5413db6783d197ed5e7967957e89833a7d3c173.zip
Moved utils, namespaces, regex... to a subobject of SVG. Renamed SVGArray and SVGNumber on export to Array and Number
Diffstat (limited to 'src/svg.js')
-rw-r--r--src/svg.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/svg.js b/src/svg.js
index 4026598..e88b825 100644
--- a/src/svg.js
+++ b/src/svg.js
@@ -1,5 +1,4 @@
import * as svgMembers from './main.js'
-import * as regex from './modules/core/regex.js'
import { makeInstance } from './utils/adopter'
// The main wrapping element
@@ -8,7 +7,3 @@ export default function SVG (element) {
}
Object.assign(SVG, svgMembers)
-
-SVG.utils = SVG
-SVG.regex = regex
-SVG.get = SVG