0
0
Fork 0
mirror of https://github.com/liabru/matter-js.git synced 2024-12-26 13:49:01 -05:00

fix terrain example module export

This commit is contained in:
liabru 2020-12-05 23:39:56 +00:00
parent 45aae25681
commit 4a967ecc83

View file

@ -106,5 +106,5 @@ Example.terrain = function() {
};
if (typeof module !== 'undefined') {
module.exports = Example;
module.exports = Example[Object.keys(Example)[0]];
}