New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@keg-hub/jsutils

Package Overview
Dependencies
Maintainers
3
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@keg-hub/jsutils

Keg common javascript utils

  • 8.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4.1K
decreased by-20.84%
Maintainers
3
Weekly downloads
 
Created
Source

jsutils

A small utility library for commonly used helper methods. Similar to lodash, underscore, etc...

See docs here

Install

  • Download the repo
      // Clone repo
      git clone https://github.com/lancetipton/jsutils.git
      // Or Add to package.json
      "dependencies": {
        "jsutils": "git+https://github.com/lancetipton/jsutils.git"
        ...
      },
    
  • Add to your code
      // * Import into code
        import jsutils from 'jsutils'
        // Or only the methods you need
        import { capitalize } from 'jsutils/string'
        import { reduceObj, mapObj } from 'jsutils/object'
    
      // * Or require code
        const jsutils = require('jsutils')
      
      // * Add as html script
        <script src='/path/to/jsutils/build/jsutils.min.js'></script>
        // jsutils will be available on the window 
        <script>
          const jsutils = window.jsutils
          
        </script>
    

Keywords

FAQs

Package last updated on 04 Dec 2020

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc