UNPKG

@oazmi/build-tools

Version:

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

9 lines (8 loc) 374 B
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. // Copyright the Browserify authors. MIT License. // Ported from https://github.com/browserify/path-browserify/ // This module is browser compatible. import { CHAR_FORWARD_SLASH } from "../_common/constants.js"; export function isPosixPathSeparator(code) { return code === CHAR_FORWARD_SLASH; }