define(function () { /** * Get sign of the value. * @version 0.1.0 (2011/11/25) */ function sign(val) { return val < 0? -1 : 1; } return sign; });