@daiso-tech/core
Version:
The library offers flexible, framework-agnostic solutions for modern web applications, built on adaptable components that integrate seamlessly with popular frameworks like Next Js.
13 lines • 344 B
JavaScript
/**
* @module Lock
*/
import {} from "../../../../lock/contracts/_module.js";
/**
* @internal
*/
export function isLockFactory(lockFactoryInput) {
return (typeof lockFactoryInput === "object" &&
"create" in lockFactoryInput &&
typeof lockFactoryInput.create === "function");
}
//# sourceMappingURL=is-lock-factory.js.map