UNPKG

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

13 lines (8 loc) 202 B
var random = require('./random'); /** * returns a random boolean value (true or false) */ function randBool(){ return random() >= 0.5; } module.exports = randBool;