elearning/Frontend-Learner/node_modules/is-what/dist/isEmptyString.js

5 lines
111 B
JavaScript
Raw Normal View History

2026-01-13 10:46:40 +07:00
/** Returns whether the payload is '' */
export function isEmptyString(payload) {
return payload === '';
}