Socket
Socket
Sign inDemoInstall

ax5core

Package Overview
Dependencies
Maintainers
1
Versions
288
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ax5core - npm Package Compare versions

Comparing version 1.0.9 to 1.0.10

8

API-ax5-util.md

@@ -508,2 +508,8 @@ # Type

## ax5.util.setDigit
```js
ax5.util.setDigit(1, 2);
> "01"
```
# Number

@@ -683,3 +689,3 @@

jQuery('#id').bind("click.app_expand", function(e){
var target = ax5.dom.findParentNode(e.target, function(target){
var target = ax5.util.findParentNode(e.target, function(target){
if($(target).hasClass("aside")){

@@ -686,0 +692,0 @@ return true;

2

bower.json
{
"name": "ax5core",
"version": "1.0.9",
"version": "1.0.10",
"authors": [

@@ -5,0 +5,0 @@ "ThomasJ <tom@axisj.com>"

{
"name": "ax5core",
"version": "1.0.9",
"version": "1.0.10",
"description": "`ax5core` is a collection of utility functions that have been designed for use in ax5ui",

@@ -5,0 +5,0 @@ "license": "LGPLv3",

@@ -526,5 +526,7 @@ /*!

for (var j = 0, valueLength = value.length; j < valueLength; ++j) {
value[j]['@i'] = j;
value[j]['@first'] = (j === 0);
buffer += this.renderTokens(token[4], context.push(value[j]), partials, originalTemplate);
if(value[j]) {
value[j]['@i'] = j;
value[j]['@first'] = (j === 0);
buffer += this.renderTokens(token[4], context.push(value[j]), partials, originalTemplate);
}
}

@@ -531,0 +533,0 @@ }

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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