Sha256: bde9b265b01594341947aeae7da787730e1ee56cfcd4a4f8bb1fb8c44337e433

Contents?: true

Size: 351 Bytes

Versions: 62

Compression:

Stored size: 351 Bytes

Contents

define(function(){
    /**
    * Gets normalized ratio of value inside range.
    */
    function norm(val, min, max){
        if (val < min || val > max) {
            throw new RangeError('value (' + val + ') must be between ' + min + ' and ' + max);
        }

        return val === max ? 1 : (val - min) / (max - min);
    }
    return norm;
});

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
trusty-festivity-extension-2.3.1 node_modules/bower/node_modules/mout/src/math/norm.js
trusty-festivity-extension-2.3.0 node_modules/bower/node_modules/mout/src/math/norm.js