1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-04 02:09:22 +02:00

add inputmask

This commit is contained in:
DanieL 2022-09-21 13:51:50 -03:00
parent ab84f1e730
commit e07838c6c7
203 changed files with 29712 additions and 5216 deletions

7
node_modules/inputmask/lib/canUseDOM.js generated vendored Normal file
View file

@ -0,0 +1,7 @@
const canUseDOM = !!(
typeof window !== "undefined" &&
window.document &&
window.document.createElement
);
export default canUseDOM;