UNPKG

@oazmi/build-tools

Version:

general deno build tool scripts which I practically use in all of my typescript repos

15 lines (14 loc) 440 B
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. // This module is browser compatible. /** * The character used to separate entries in the PATH environment variable. */ export const DELIMITER = ":"; /** * The character used to separate components of a file path. */ export const SEPARATOR = "/"; /** * A regular expression that matches one or more path separators. */ export const SEPARATOR_PATTERN = /\/+/;