
BREAKING CHANGE: Node v12.20+, v14.14+, or v16.0+ is required * fix!: remove esm package, use native Node ES modules * fix: fix some CJS imports
7 lines
216 B
JavaScript
7 lines
216 B
JavaScript
import { thunk } from './thunk.js'
|
|
|
|
export const urlRegex = thunk(() => {
|
|
// this is provided at build time to avoid having a lot of runtime code just to build
|
|
// a static regex
|
|
return process.env.URL_REGEX
|
|
})
|