NodeJS wrapper for Three.js' PLYLoader function
npm install three-ply-loader```
$ npm install --save three-ply-loader
`javascript
const THREE = require('three');
const PLYLoader = require('three-ply-loader');
PLYLoader(THREE);
console.log(typeof THREE.PLYLoader);
//=> 'function'
``