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

12 lines (10 loc) 302 B
var lerp = require('./lerp'); var norm = require('./norm'); /** * Maps a number from one scale to another. * @example map(3, 0, 4, -1, 1) -> 0.5 */ function map(val, min1, max1, min2, max2){ return lerp( norm(val, min1, max1), min2, max2 ); } module.exports = map;