summaryrefslogtreecommitdiffstats
path: root/src/utils.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils.js')
-rw-r--r--src/utils.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/utils.js b/src/utils.js
new file mode 100644
index 0000000..5cf1bda
--- /dev/null
+++ b/src/utils.js
@@ -0,0 +1,10 @@
+
+
+SVG.Utils = {
+
+ merge: function(o, m) {
+ for (var k in m)
+ o.prototype[k] = m[k];
+ }
+
+}; \ No newline at end of file