@lonu/stc
Version:
A tool for converting OpenApi/Swagger/Apifox into code.
15 lines (14 loc) • 423 B
JavaScript
// Copyright 2018-2025 the Deno authors. 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 = /[\\/]+/;