npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@yjjmh/utils

v2.0.0

Published

常用js方法

Downloads

77

Readme

安装

方式一:

  yarn add @yjjmh/utils -S

方式二:

  npm install @yjjmh/utils -S

使用

方式一:

  import utils from @yjjmh/utils

  utils.cookie.getItem({ key: "test" })

方式二:

  import cookie from @yjjmh/utils;
  cookie.getItem({ key: "test" })

方式三:

  import { cookieGetItem } from @yjjmh/utils
  cookie.getItem({ key: "test" })

当前支持的方法

cookie

  • getItem

    • 描述:
      • 从document.cookie中获取指定key的cookie值
    • 参数:
      • *key{String}: 要获取的cookie的key
    • 返回值:
      • {String}: 返回key对应的cookie值
      • {Undefined}: 不存在key对应的cookie值
    • 示例:
      • getItem({ key: "test" })
  • setItem

    • 描述:
      • 设置指定key的cookie值
    • 参数:
      • *key{String}: 设置cookie对应的名称
      • value{String}: 设置cookie对应的值
      • end{Number|Date|GMTString|String|Null|Infinity}: 过期时间,默认会话结束过期 Infinity永不过期
      • path{String|Null}: 设置cookie的路径,默认当前路径,路径必须绝对路径
      • domain{String|Null}: 设置cookie域名,默认为当前文档位置的路径的域名
      • secure{Boolean|Null}: 设置cookie是否只能被https传输
    • 返回值:
      • {Boolean}: 成功设置返回true,失败返回false
    • 示例:
      • setItem({ key: "test", value: "123" })
  • removeItem

    • 描述:
      • 从document.cookie中删除指定key的cookie值
    • 参数:
      • *key{String}: 要删除的cookie的key
      • path{String|Null}: cookie的路径,默认当前路径,路径必须绝对路径
      • domain{String|Null}: cookie域名,默认为当前文档位置的路径的域名
    • 返回值:
      • {Boolean}: 成功设置返回true,失败返回false
    • 示例:
      • removeItem({ key: "test" })
  • hasItem

    • 描述:
      • 从document.cookie中判断有没有对应的键值
    • 参数:
      • *key{String}: 要检测的cookie名称
    • 返回值:
      • {Boolean}: 存在返回true,不存在返回false
    • 示例:
      • hasItem({ key: "test" })
  • getAllKeys

    • 描述:
      • 从document.cookie中获取所有cookie名称组成的数组
    • 参数: 无
    • 返回值:
      • {Array}: 包含所有cookie的名称组成的数组
    • 示例:
      • getAllKeys()
  • getAll

    • 描述:
      • 从document.cookie中获取cookie键值组成的对象
    • 参数: 无
    • 返回值:
      • {Object}: 由cookie键值组成的对象,键为cookie名称,值为对应的值
    • 示例:
      • getAll()
  • removeAll

    • 描述:
      • 清空cookie中所有键值
    • 参数: 无
    • 返回值:
      • {Boolean}: 成功清空返回true,失败返回false
    • 示例:
      • removeAll()

type

  • getType

    • 描述:
      • 获取参数的类型
    • 参数:
      • payload{Any}: 需要获取类型的参数
    • 返回值:
      • {String}: 返回payload参数的类型 首字母大写 如 Boolean
    • 示例:
      • getType({ payload: 123 }) // Number
  • isType

    • 描述:
      • 判断传入的参数是否是某个类型
    • 参数:
      • payload{Any}: 待检测的数据
      • type{String}: 期望的数据类型
    • 返回值:
      • {Boolean}: 返回检测的结果 与预期类型相同返回true 否则返回false
    • 示例:
      • isType({ payload: 123, type: "Number" }) // true

date

  • formatDate

    • 描述:
      • 格式化日期为指定的字符串格式
    • 参数:
      • date{Date|Number|String}: 要格式化的日期,省略默认为当前时间,支持时间戳,时间字符串或日期对象
      • format{String}: 格式化字符串,默认"yyyy-MM-dd HH:mm:ss", 注意大小写,大写M表示月份,小写m表示分钟, 大写H表示24小时制,小写h表示12小时制,大写S表示毫秒,小写s表示秒
    • 返回值:
      • {String}: 返回格式化后的日期字符串
    • 示例:
      • formatDate({date: 1735660800000, format: "yyyy-MM-dd HH:mm:ss.S"})
  • getBoundaryTime

    • 描述:
      • 获取某天的开始时间和结束时间对象
    • 参数:
      • date{Date|String}: 需要获取时间戳的日期
    • 返回值:
      • {Object}: 返回一天的开始和结束时间戳
    • 示例:
      • getBoundaryTime({ date: "2020-1-1" }) // {"start": Date(), "end": Date()}

utils

  • formatNumber

    • 描述:
      • 格式化数字位数
    • 参数:
      • *payload{Number}: 要格式化的数值
      • int{Number}: 整数部分长度,默认为2位
      • dec{Number}: 小数部分长度,默认位0位
      • padInt{String}: 整数部分补位字符,默认使用0
      • padDec{String}: 小数部分补位字符,默认使用0
      • type{String}: 格式化类型 round 四舍五入 floor 向下取整 ceil 向上取整 discard 舍弃 默认为空,调用toFixed方法四舍五入
    • 返回值:
      • {String}: 格式化后的数值
    • 示例:
      • formatNumber({payload:123.4567,int:4,dec:2}) // 0123.46
  • getEnv

    • 描述:
      • 获取当前开发环境
    • 参数:
      • customRule{String}: 自定义校验规则-正则表达式,用于校验地址栏地址
    • 返回值:
      • {String}: dev - 开发环境 prod - 生产环境
    • 示例:
      • getEnv({customRule: "dev-*"})
  • pageTo

    • 描述:
      • 跳转到一个新地址
    • 参数:
      • *url{String}: 要跳转的地址
      • newTab{Boolean}: 是否用一个新的窗口打开
    • 返回值: 无
    • 示例:
      • pageTo({url:"https://www.baidu.com",newTab:true})
  • deepCopy

    • 描述:
      • 获取当前开发环境
    • 参数:
      • *payload{Any}: 对象/数组或其他值
    • 返回值:
      • {Any}: 返回一个和传入的payload一样的值
    • 示例:
      • deepCopy({payload:{a:1,b:[2,3],c:{d:4}}})
  • downloadFile

    • 描述:
      • 下载文件
    • 参数:
      • *url{String}: 文件地址
      • name{String}: 保存文件名称
      • newTab{Any}: 是否打开一个新的窗口
      • forceDownload{Any}: 是否强制下载,不预览
      • MIMEType{String}: MIME类型,默认为"application/octet-stream"
    • 返回值:
      • {Object}: {status:下载是否成功, message:提示信息}
    • 示例:
      • downloadFile({url:"https://www.baidu.com/img/bd_logo1.png",name:"logo"}).then(res=>{console.log(res)}).catch(err=>{console.log(err)})