Get codePointAt/fromCodePoint working on the server

This commit is contained in:
Shaunak Kishore
2015-09-24 23:03:46 -04:00
parent e55c9a3442
commit aff018a324
9 changed files with 66 additions and 0 deletions

View File

@@ -8,3 +8,7 @@ this.assert = (condition, message) => {
}
this.maybeRequire = (module) => Meteor.isServer ? Npm.require(module) : null;
if (Meteor.isServer) {
Meteor.npmRequire('es6-shim');
}