Socket
Socket
Sign inDemoInstall

celia

Package Overview
Dependencies
Maintainers
1
Versions
82
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

celia - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

4

lib/common.js

@@ -17,3 +17,3 @@ 'use strict';

function camelCase(value) {
return value.replace(EXP_MS_PREFIX, 'ms-').replace(EXP_DASH_ALPHA, (all, letter) => {
return value.replace(EXP_DASH_ALPHA, (all, letter) => {
return letter.toUpperCase();

@@ -26,2 +26,2 @@ });

camelCase
};
};

@@ -64,2 +64,6 @@ 'use strict';

function isAsyncFunction(value) {
return toString.call(value) === '[object AsyncFunction]';
};
function isPromiseLike(value) {

@@ -125,2 +129,2 @@ return value && isFunction(value.then);

type
};
};
{
"name": "celia",
"version": "1.0.0",
"description": "make a collection package for coding",
"version": "1.0.1",
"description": "A modern JavaScript utility library delivering modularity, performance, & extras.",
"main": "index.js",

@@ -6,0 +6,0 @@ "directories": {

@@ -1,1 +0,18 @@

# celia
# celia
> Note: A modern JavaScript utility library delivering modularity, performance, & extras.
---
<br/>
# Usage
```bash
// const { type, common, array } = require('celia');
const type = require('celia/lib/type');
const common = require('celia/lib/common');
const array = require('celia/lib/array');
```
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