polylabel 0.1.11

A Rust implementation of the Polylabel algorithm
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var proto = {}
  , rex = /read.+/
  , fn

fn = function() {

}

module.exports = proto

for(var key in Buffer.prototype) {
  if(rex.test(key)) {
    proto[key] = fn.call.bind(Buffer.prototype[key])
  }
}