@acce/lit-path 中文文档教程

发布于 5年前 浏览 21 更新于 3年前

Lit Paths

这是一个尽可能干净地将 node.js 路径 API 实现到浏览器中的简单项目。

install

npm i -S @acce/lit-path

use

import * as path from '@acce/lit-path';

path.dirname('/test/directory.ext'); //> "/test"

或者

import { basename } from '@acce/lit-path';

path.basename('/test/directory.ext', '.ext'); //> "directory"

Supported APIs

这使用 node.js 路径 API 实现了接近 1-1 的代码。

以下是已实现的 API

  • path.basename
  • path.dirname
  • path.extname
  • path.normalize
  • path.join
  • path.resolve
  • path.parse
  • path.format

differences

  • process.cwd() is assumed to be the location.pathname
  • path format is always posix, because the web…

Lit Paths

This is a simple project to implement node.js path API into a browser, as cleanly as possible.

install

npm i -S @acce/lit-path

use

import * as path from '@acce/lit-path';

path.dirname('/test/directory.ext'); //> "/test"

or

import { basename } from '@acce/lit-path';

path.basename('/test/directory.ext', '.ext'); //> "directory"

Supported APIs

This implements near 1-1 code with node.js path API.

Here are the implemented APIs

  • path.basename
  • path.dirname
  • path.extname
  • path.normalize
  • path.join
  • path.resolve
  • path.parse
  • path.format

differences

  • process.cwd() is assumed to be the location.pathname
  • path format is always posix, because the web…
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文