Cannot use arrow function here. (fix #44)

This commit is contained in:
Julien Fontanet 2015-02-26 10:22:19 +01:00
parent 31a7e48768
commit 21b177cbb4

View File

@ -1 +1,5 @@
export var getAllObjects = () => this.getObjects();
function getAllObjects() {
return this.getObjects();
}
export {getAllObjects};