added unit testing, and started implementing unit tests...phew
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
/*!
|
||||
* Copied from:
|
||||
* ws: a node.js websocket client
|
||||
* Copyright(c) 2011 Einar Otto Stangvik <[email protected]>
|
||||
* MIT Licensed
|
||||
*/
|
||||
|
||||
try {
|
||||
module.exports = require('../build/Release/bufferutil');
|
||||
} catch (e) { try {
|
||||
module.exports = require('../build/default/bufferutil');
|
||||
} catch (e) { try {
|
||||
module.exports = require('./BufferUtil.fallback');
|
||||
} catch (e) {
|
||||
console.error('bufferutil.node seems to not have been built. Run npm install.');
|
||||
throw e;
|
||||
}}}
|
||||
Reference in New Issue
Block a user