tastypie
Version:
Tastypie is a webservice API framework for Node.js based on Django's Tastypie Framework. It provides a convenient, yet powerful and highly customizable, abstraction for creating REST-style interfaces
19 lines (12 loc) • 445 B
JavaScript
;
// credits to @cpojer's Class.Binds, released under the MIT license
// https://github.com/cpojer/mootools-class-extras/blob/master/Source/Class.Binds.js
var prime = require("prime")
var bind = require("mout/function/bind")
var bound = prime({
bound: function(name){
var bound = this._bound || (this._bound = {})
return bound[name] || (bound[name] = bind(this[name], this))
}
})
module.exports = bound