primer cambio

This commit is contained in:
beseira13
2026-01-19 12:12:38 -03:00
parent 5f59dba52d
commit 44990f015a
4759 changed files with 588702 additions and 0 deletions

6
node_modules/validator/es/lib/isFullWidth.js generated vendored Normal file
View File

@@ -0,0 +1,6 @@
import assertString from './util/assertString';
export var fullWidth = /[^\u0020-\u007E\uFF61-\uFF9F\uFFA0-\uFFDC\uFFE8-\uFFEE0-9a-zA-Z]/;
export default function isFullWidth(str) {
assertString(str);
return fullWidth.test(str);
}