Socket
Socket
Sign inDemoInstall

nested-sort

Package Overview
Dependencies
0
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.0.0 to 4.0.0

4

dist/nested-sort.cjs.js

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

class nestedSort {
class NestedSort {

@@ -537,2 +537,2 @@ /**

module.exports = nestedSort;
module.exports = NestedSort;

@@ -187,3 +187,3 @@ class DataEngine {

class nestedSort {
class NestedSort {

@@ -535,2 +535,2 @@ /**

export default nestedSort;
export default NestedSort;
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, global.nestedSort = factory());
(global = global || self, global.NestedSort = factory());
}(this, (function () { 'use strict';

@@ -300,3 +300,3 @@

var nestedSort = /*#__PURE__*/function () {
var NestedSort = /*#__PURE__*/function () {
/**

@@ -311,3 +311,3 @@ * @constructor

*/
function nestedSort() {
function NestedSort() {
var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},

@@ -326,3 +326,3 @@ _ref$actions = _ref.actions;

_classCallCheck(this, nestedSort);
_classCallCheck(this, NestedSort);

@@ -371,3 +371,3 @@ this.data = data;

_createClass(nestedSort, [{
_createClass(NestedSort, [{
key: "getDataEngine",

@@ -697,7 +697,7 @@ value: function getDataEngine() {

return nestedSort;
return NestedSort;
}();
return nestedSort;
return NestedSort;
})));
{
"name": "nested-sort",
"version": "3.0.0",
"version": "4.0.0",
"author": "Hesam Bahrami (Genzo)",

@@ -5,0 +5,0 @@ "description": "A JavaScript library to create a nested list of elements",

@@ -17,6 +17,2 @@ # Nested Sort

## Demo
There are some samples in the `dev` folder.
## Developer environment requirements

@@ -52,6 +48,4 @@

## Publishing
## Demo
```sh
npm publish
```
There are some samples in the `dev` folder. In order to see them in action, first run `yarn watch` and then navigate to: `http://127.0.0.1:5000/dev/`
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc