New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

split-add

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

split-add

a package for performing incremental calculations on results

latest
Source
npmnpm
Version
1.0.5
Version published
Maintainers
1
Created
Source

This Package is used to perform incremental calculations on results

How to use

# install the package
npm install split-add

Example

// import the package
import { splitAdd, splitMultiply } from "split-add";

// call the function
number = 1234
const resultAdd = splitAdd(number);
const resultMultiply = splitMultiply(number)
console.log(resultAdd); // 10
console.log(resultAdd); // 24

Output

10;
24;

Keywords

split

FAQs

Package last updated on 14 Mar 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts