# itriton-saber **Repository Path**: ibaleine-open-source/itriton-saber ## Basic Information - **Project Name**: itriton-saber - **Description**: @itriton/saber 提供开箱即用的JS/TS函数工具库 - **Primary Language**: TypeScript - **License**: ISC - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2023-04-08 - **Last Updated**: 2024-08-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: TypeScript ## README # ITRITON-SABER [@itriton/saber](http://itriton.icjs.ink/itriton/saber/start/introduce.html),提供开箱即用的JS/TS函数工具库 ## 安装(Install) ### npm `npm install @itriton/saber` ### pnpm `pnpm install @itriton/saber` ### yarn `yarn add @itriton/saber` ## 使用(Use) #### ESM ``` import { getUrlQuery } from '@itriton/saber' getUrlQuery('name') ``` #### CJS ``` const saber = require('@itriton/saber') saber.getUrlQuery('name') ```