chore(build): switch to typescript

This commit is contained in:
Rob Wormald
2015-11-24 16:37:29 -08:00
parent cccfb60a4f
commit 74c46223e5
16 changed files with 164 additions and 1229 deletions
+6
View File
@@ -0,0 +1,6 @@
export function get(obj, path) {
for (var i=0, path = path.split('.'), len = path.length; i < len; i++) {
obj = obj[path[i]];
}
return obj;
};