UNPKG

@flymeth/datapackjs

Version:

A great library to create your own minecraft datapack with javascript!

7 lines (6 loc) 295 B
type ressourceLocation = string const ressourceLocationRegExp = /[a-z_\- 0-9\.\/]+/ function isRessourceLocationValid(test: string) { return test.length && ressourceLocationRegExp.exec(test)?.[0] === test } export {ressourceLocation, isRessourceLocationValid, ressourceLocationRegExp}