Socket
Socket
Sign inDemoInstall

@lykmapipo/common

Package Overview
Dependencies
16
Maintainers
1
Versions
143
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @lykmapipo/common

Helper utilities for day to day development


Version published
Maintainers
1
Install size
6.16 MB
Created

Changelog

Source

0.44.5 (2021-11-11)

Chores
  • release: compile latest source (163e2f24)
  • deps:
    • drop parse-json (aa7b5521)
    • force latest version & audit fix (9907ef3a)
    • force latest version & audit fix (9dbec09b)
    • force latest version & audit fix (1a7f6e0f)
    • force latest version & audit fix (580aa24d)
    • force latest version & audit fix (9d4bdc4b)
    • force latest version & audit fix (fc4eb9ab)
    • force latest version & audit fix (eb5a3799)
    • force latest version & audit fix (9676f0bf)
  • ci: update travis badge url (00738b0b)
Documentation Changes
  • security: restore security policy guide (6534240e)

Readme

Source

common

Build Status Dependencies Status Coverage Status GitHub License

Commitizen Friendly code style: prettier Code Style npm version

Helper utilities for day to day development

Requirements

Installation

npm install --save @lykmapipo/common

Usage

import {
  compact,
  uniq,
  sortedUniq,
  pkg,
  scopesFor,
  abbreviate,
} from '@lykmapipo/common';

const a = [null, 1, '', undefined];
const b = compact(a); // => [ 1 ]
const x = { a: 1, b: '', c: undefined };
const y = compact(x); // => { a: 1 }

const a = [null, 1, 1, '', undefined, 2];
const b = uniq(a); // => [ 1, 2 ]
const x = { a: 1, b: '', c: undefined };
const y = uniq(x); // => { a: 1 }

const a = [null, 1, 2, '', undefined, 1];
const b = sortedUniq(a); // => [ 1, 2 ]
const x = { a: 1, b: '', c: undefined };
const y = sortedUniq(x); // => { a: 1 }

const { name, description } = pkg(); // => { name: ..., version: ...}

const scopes = scopesFor('user', 'payment'); // => ['user:create', 'payment:create'];

const abbreaviation = abbreviate('Ministry of Finance'); // => MOF

Test

  • Clone this repository

  • Install all dependencies

npm install
  • Then run test
npm test

Contribute

It will be nice, if you open an issue first so that we can know what is going on, then, fork this repo and push in your ideas. Do not forget to add a bit of test(s) of what value you adding.

Licence

The MIT License (MIT)

Copyright (c) lykmapipo & Contributors

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Keywords

FAQs

Last updated on 11 Nov 2021

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc