one-spaces
Advanced tools
Comparing version 0.3.5 to 0.4.1
@@ -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; | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6425
80