frontend/smart-hut/src/components/dashboard/devices/constants.js

6 lines
134 B
JavaScript
Raw Normal View History

export const DEVICE_NAME_MAX_LENGTH = 15;
2020-03-23 20:24:17 +00:00
export function checkMaxLength(name) {
return !(name.length > DEVICE_NAME_MAX_LENGTH);
}