Current File : //usr/lib/node_modules/bower/lib/node_modules/mout/src/function/constant.js
define(function () {

    /**
     * Returns a new function that will return the value
     */
    function constant(value){
        return function() {
            return value;
        };
    }

    return constant;

});