Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@cobalt-ui/utils

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cobalt-ui/utils - npm Package Compare versions

Comparing version 0.0.0 to 0.1.0

CHANGELOG.md

3

dist/indent.js

@@ -0,1 +1,2 @@

const TRAILING_SPACE_RE = /\s*$/;
/**

@@ -30,3 +31,3 @@ * Indent

// indent
return `${prefix}${ln.replace(/\s*$/, '')}`;
return `${prefix}${ln.replace(TRAILING_SPACE_RE, '')}`;
})

@@ -33,0 +34,0 @@ .join('\n');

@@ -0,1 +1,2 @@

export * from './ansi.js';
export * from './indent.js';

@@ -0,1 +1,2 @@

export * from './ansi.js';
export * from './indent.js';
{
"name": "@cobalt-ui/utils",
"description": "Generic codegen utilities",
"version": "0.0.0",
"version": "0.1.0",
"author": {

@@ -14,5 +14,6 @@ "name": "Drew Powers",

"scripts": {
"build": "rm -rf dist && tsc",
"build": "tsc",
"dev": "tsc -w"
}
}
},
"readme": "# @cobalt-ui/utils\n\nGeneric codegen utilities for use.\n"
}

@@ -10,2 +10,4 @@ export interface IndentOptions {

const TRAILING_SPACE_RE = /\s*$/;
/**

@@ -39,3 +41,3 @@ * Indent

// indent
return `${prefix}${ln.replace(/\s*$/, '')}`;
return `${prefix}${ln.replace(TRAILING_SPACE_RE, '')}`;
})

@@ -42,0 +44,0 @@ .join('\n');

@@ -0,1 +1,2 @@

export * from './ansi.js';
export * from './indent.js';
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