flocore/lib/Point.js
Ryan X. Charles f82fa5007a move *.browser and *.node to browser/* and node/*
...this should leave the lib folder a little bit less cluttered.
2014-04-22 19:36:18 -03:00

6 lines
125 B
JavaScript

if (process.versions) {
module.exports = require('./node/Point');
return;
}
module.exports = require('./browser/Point');