UNPKG

zen-utils

Version:

12 lines (11 loc) 201 B
"use strict"; /** * Created by liguoxin on 2017/3/6. * */ module.exports = { limit(value, min, max) { const result = value > min ? value : min; return result < max ? result : max; } };