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

smn-utils

v1.0.6

Published

Packet of usefull all of utility helper function for daily use.

Downloads

4

Readme

smn-utils v1.0.6

Installation

Using npm:

$ npm i smn-utils --save

Using yarn:

$ yarn add smn-utils

Uses:

// Time Stamp
// Exp: 1676689908101
import { TimeStamp } from "smn-utils";
TimeStamp();

// TimeStamp with prefix
// Exp: ABC1676689908101
import { TimeStamp } from "smn-utils";
TimeStamp({ prefix: "ABC" });

// TimeStamp with suffix
// Exp: 1676689908101DEF
import { TimeStamp } from "smn-utils";
TimeStamp({ suffix: "DEF" });

// Unique Number
// Exp: 1676690698596591
import { Unique } from "smn-utils";
Unique();

// Unique Number with prefix
// Exp: ABC1676690698596591
import { Unique } from "smn-utils";
Unique({ prefix: "ABC" });

// Unique Number with suffix
// Exp: 1676690698596591DEF
import { Unique } from "smn-utils";
Unique({ suffix: "DEF" });

// Ellipsis with big string
// Default length value is 30
// Ellipsis count default value 3
// Exp: It is a long...
import { Ellipsis } from "smn-utils";
Ellipsis("It is a long established fact that a reader will be distracted.", 12, 3);

// Convert second number to readable hour:minute:second
// Exp: 01:01:30
import { ConvertHMS } from "smn-utils";
ConvertHMS(3690);

// Convert second number to readable minute:second
// Exp: 01:30
import { ConvertMS } from "smn-utils";
ConvertMS(90);

// Close current window and show blank screen
// It only work on browser
import { WindowClose } from "smn-utils";
WindowClose();
// Close current window and redirect to the page
// It only work on browser
import { WindowClose } from "smn-utils";
WindowClose("https://google.com");

// First letter uppercase
// Exp: Hello world
import { UCFirst } from "smn-utils";
UCFirst("hello world");

// Validate email address
// Exp: true
import { ValidateEmail } from "smn-utils";
ValidateEmail("[email protected]");

// wait specific second in async function
// Wait one second
import { Sleep } from "smn-utils";
await Sleep(1);

// Run function multiple time
// Default run times is 2
import { RunFunc } from "smn-utils";
const functionName = () => {
  console.log("Hello world");
};
RunFunc(functionName, 3);

// Run function after specific second
// Default run times is 2 second
import { RunDelayFunc } from "smn-utils";
const functionName2 = () => {
  console.log("Hello world");
};
RunDelayFunc(functionName2, 3);

// Run function and get the run time
// Exp: functionName: 0.43ms
import { FuncRunTime } from "smn-utils";
const functionName3 = () => {
  console.log("Hello world");
};
FuncRunTime(functionName3, "functionName");

// Random number generate with range
// Default lower value is: 1 and upper value is 100
// Exp: 47
import { RandomRange } from "smn-utils";
RandomRange(1, 100);

// Remove duplicate from array
// Exp: ["Tom", "Simon", "Sarah"]
import { RDFA } from "smn-utils";
RDFA(["Tom", "Simon", "Tom", "Sarah"]);

// String to slug
// Exp: hello-world
import { Slugify } from "smn-utils";
Slugify("Hello World");

// Camel case to snake case
// Exp: _hello _world
import { CCTSC } from "smn-utils";
CCTSC("Hello World");

// Snake case to camel case
// Exp: Hello World
import { SCTCC } from "smn-utils";
SCTCC("_hello _world");

// Convert currency from amount
// Exp: $101.50
import { ConvertToCurrency } from "smn-utils";
ConvertToCurrency(101.5, "USD", "us-US");

// Check value numeric or not
// Exp: true
import { IsNumeric } from "smn-utils";
IsNumeric(101.5);