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

one-spaces

Package Overview
Dependencies
Maintainers
1
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

one-spaces - npm Package Compare versions

Comparing version 0.3.5 to 0.4.1

2

dist/index.d.ts

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

export default function (): IArguments;
export default function (): string;
/**
* @author TroyTae
* @version 0.3.5
* @version 0.4.1
* @name one-spaces

@@ -13,3 +13,8 @@ */

function index () {
return arguments;
var className = '';
var i = arguments.length;
while (i--) {
className += (' ' + arguments[i]);
}
return className;
}

@@ -16,0 +21,0 @@

/**
* @author TroyTae
* @version 0.3.5
* @version 0.4.1
* @name one-spaces
*/
(function(g,f){typeof exports==='object'&&typeof module!=='undefined'?module.exports=f():typeof define==='function'&&define.amd?define(f):(g=g||self,g.OneSpaces=f());}(this,(function(){'use strict';function index () {
return arguments;
var className = '';
var i = arguments.length;
while (i--) {
className += (' ' + arguments[i]);
}
return className;
}return index;})));
{
"name": "one-spaces",
"version": "0.3.5",
"version": "0.4.1",
"description": "A tiny module for making className 😎",

@@ -5,0 +5,0 @@ "main": "dist/index.min.js",

export default function() {
return arguments;
var className = '';
var i = arguments.length;
while (i--) {
className += (' ' + arguments[i]);
}
return className;
}
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