File "util.js"
Full Path: /home/safaelji/recrut.automotomaroc.com/wp-content/plugins/extendify/src/Agent/lib/util.js
File size: 172 bytes
MIME-type: text/plain
Charset: utf-8
export const clamp = (value, min, max) => Math.max(min, Math.min(value, max));
export const makeId = () =>
Date.now().toString(36) + Math.random().toString(36).slice(2);