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

lio-fe-util

v2.1.0

Published

mxnavi , lio project, fe,util

Downloads

2

Readme

简介

lio-fe-util是将作者开发项目时常用得工具函数封装为npm包。主要内容包括

  • 数组相关工具函数
  • 日期相关工具函数
  • 常用正则表达式
  • 类型判断工具函数
  • 图片相关工具函数
  • 其他(常用第三方包)
  • 浏览器判断
  • blob文件下载

日期相关工具函数

formateTime: 将时间戳(毫秒值)转换成时间 (YYYY-MM-DD hh:mm:ss)

import { formateTime } from 'mx-dev-util';
changeTime(val) {
  return formateTime(val * 1000);
},

formateDate:将时间戳转换成日期 (YYYY-MM-DD)

import { formateDate } from 'mx-dev-util'
// template
<p>{formateDate(new Date(new Date().getTime()))}</p>

calcTimes:将秒转换成时分秒 (hh:mm:ss) calcSeconds: 将时分秒(hh:mm:ss)转成秒

其他(常用第三方包)

arrify:将值转为数组

import { arrify } from 'mx-dev-util';
const detail = document.getElementById('details')
const imgs = arrify(detail.getElementsByTagName('img'));
imgs.forEach((item) => {
  item.width = 400
  item.height = 220
})

omit:删除对象中得属性

import { omit } from 'mx-dev-util';
await editAppointmentInfo({
  ...omit(this.form, ['timeArr']),
});

await-to-js: 对async await 进行封装以便更好地进行错误处理

import { to } from 'mx-dev-util'
async getServiceList() {
  const [error, data] = await to(listStoreService({
    status: 1,
    company_id: this.$store.state.common.userInfo.company_id
  }));
  if (data) {
    this.serviceArr = data.records;
  }
  if (error) {
    this.$message.error(error.data.remark);
  }
},

浏览器判断 https://blog.csdn.net/zzddada/article/details/112986320 blob文件下载 https://blog.csdn.net/zH1_234567/article/details/125594257