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

@onelinecode/onelinecode

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@onelinecode/onelinecode

Awesome javascript in one line of code

Source
npmnpm
Version
1.20.1
Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

Awesome JavaScript in one line of code written above a picture of Mt. Fuji's peak

Awesome javascript in one line of code

A collection of utilities and helpers following the principle: Keep it as simple as possible in one line of code.

As long as we area dealing with JavaScript, the library assumes that the user provides valid input. No type checking or other verifications of the arguments are part of the functions. The library tires to use the simplest and most performant code possible. To keep the functions as simple as possible they will be reduced to the core functionality: "one function should have one specific functionality only".

New functions will be added every time there is an article being published.

All functions are written in ESNext esmodules (./src) and available as -umd (./dist/index.js) with the onelinecode namespace (e.g. window.onlinecode) -commonjs (./dist/index.cjs.js) -esm (./dist/index.esm.js)

Available functions

Array

See ./doc/array.md

Installation

$ npm i @onelinecode/onelinecode
$ yarn add @onelinecode/onelinecode

Usage

For example, you want to shallowClone an array:

import { shallowClone } from '@onelinecode/onelinecode/array';
let array = [1];
let arrayClone = shallowClone(array);

Testing

The library has 100% code coverage with ava and passes the build on Build status from travis-ci.

Contribution

If you are interested in discussion a specific function, please see the corresponding article from the series on dev.to.

Please don't hesitate to comment, give feedback. I appreciate every input or comment. We can and should learn from each others opinion and knowledge. Please stick to a respectful style of discussion and read the code of conduct like the articles or star the repository.

Tech Stack

  • ava: 3.15.0
  • c8: 7.10.0
  • esm: 3.2.25
  • rollup: 2.58.

License

Licensed under the MIT license. MIT - http://www.opensource.org/licenses/mit-license.php

Keywords

onelineofcode

FAQs

Package last updated on 07 Dec 2021

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