Gathering detailed insights and metrics for deepdash
Gathering detailed insights and metrics for deepdash
Gathering detailed insights and metrics for deepdash
Gathering detailed insights and metrics for deepdash
deepdash-es
➔ 𝐃eep extension for 𝐋odash-es: ✓ eachDeep ✓ filterDeep ✓ pickDeep ✓ omitDeep ✓ keysDeep ✓ index ✓ condenseDeep ⋮ Parent nodes tracking ⋮ Circular references check ⋮ Leaves only mode ⋮ Path as a valid js string or an array ⋮
extendash
loadsh extended with deepdash and some other functions.
deepdash.mapvaluesdeep.dev
deepdash's mapValuesDeep standalone
eachDeep, filterDeep, findDeep, someDeep, omitDeep, pickDeep, keysDeep etc.. Tree traversal library written in Underscore/Lodash fashion
npm install deepdash
Typescript
Module System
Node Version
NPM Version
98.4
Supply Chain
100
Quality
76.2
Maintenance
100
Vulnerability
99.3
License
JavaScript (99.77%)
HTML (0.23%)
Total Downloads
15,629,586
Last Day
5,797
Last Week
84,664
Last Month
386,272
Last Year
3,834,551
MIT License
278 Stars
462 Commits
14 Forks
2 Watchers
25 Branches
5 Contributors
Updated on Jun 30, 2025
Minified
Minified + Gzipped
Latest Version
5.3.9
Package Id
deepdash@5.3.9
Size
267.04 kB
NPM Version
6.14.13
Node Version
14.17.0
Published on
May 22, 2021
Cumulative downloads
Total Downloads
Last Day
-14%
5,797
Compared to previous day
Last Week
-10.5%
84,664
Compared to previous week
Last Month
-6%
386,272
Compared to previous month
Last Year
23.9%
3,834,551
Compared to previous year
24
eachDeep, filterDeep, findDeep, someDeep, omitDeep, pickDeep, keysDeep etc.. Tree traversal library written in Underscore/Lodash fashion. Standalone or as a Lodash mixin extension
Deepdash lib is used in PlanZed.org - awesome cloud mind map app created by the author of deepdash.
Plz check it, it's free and I need feedback ????
Load script after Lodash, then pass a lodash instance to the deepdash function:
1<script src="https://cdn.jsdelivr.net/npm/lodash/lodash.min.js"></script> 2<script src="https://cdn.jsdelivr.net/npm/deepdash/browser/deepdash.min.js"></script> 3<script> 4 deepdash(_); 5 console.log(_.eachDeep); // --> new methods mixed into Lodash 6</script>
If you don't use Lodash - there is a standalone version:
1<script src="https://cdn.jsdelivr.net/npm/deepdash/browser/deepdash.standalone.min.js"></script> 2<script> 3 console.log(deepdash.eachDeep); // --> all the methods just work 4</script>
Standalone Deepdash weighs more then "dry" version, because it includes some of cherry-picked Lodash methods it depends on. But it's better to use Standalone version, than include full Lodash just as dependency, if you don't need Lodash.
npm i --save deepdash
In Node.js:
1// load Lodash if you need it 2const _ = require('lodash'); 3//mixin all the methods into Lodash object 4require('deepdash')(_); 5// or cherry-pick method you only need and mix it into lodash 6require('deepdash/addFilterDeep')(_); 7// or cherry-pick method separately if you don't want to mutate Lodash instance 8const filterDeep = require('deepdash/getFilterDeep')(_); 9// If you don't need Lodash - there is standalone version 10const deepdash = require('deepdash/standalone'); // full 11const filterDeep = require('deepdash/filterDeep'); // or separate standalone methods
There is also deepdash as ES6 module
npm i --save deepdash-es
1import lodash from 'lodash-es'; 2import deepdash from 'deepdash-es'; 3const _ = deepdash(lodash);
in the ES package there are same cherry-pick and/or standalone methods as in the main package.
1import filterDeep from 'deepdash-es/filterDeep';
or
1import { filterDeep } from 'deepdash-es/standalone';
or
1import _ from 'lodash-es'; 2import getFilterDeep from 'deepdash-es/getFilterDeep'; 3const filterDeep = getFilterDeep(_);
or
1import _ from 'lodash-es'; 2import addFilterDeep from 'deepdash-es/addFilterDeep'; 3addFilterDeep(_);// --> _.filterDeep
Example react+redux app with nested comments filtered by Deepdash.(source is here)
› iterate over all the children and sub-children ???? see docs
1let children = [ 2 { 3 description: 'description for node 1', 4 comment: 'comment for node 1', 5 note: 'note for node 1', 6 name: 'node 1', 7 bad: false, 8 children: [ 9 { 10 description: 'description for node 1.1', 11 comment: 'comment for node 1.1', 12 note: 'note for node 1.1', 13 name: 'node 1.1', 14 bad: false, 15 }, 16 { 17 description: 'description for node 1.2', 18 comment: 'comment for node 1.2', 19 note: 'note for node 1.2', 20 name: 'node 1.2', 21 good: true, 22 }, 23 { 24 description: 'description for node 1.3', 25 comment: 'comment for node 1.3', 26 note: 'note for node 1.3', 27 name: 'node 1.3', 28 bad: true, 29 good: false, 30 }, 31 ], 32 }, 33 { 34 description: 'description for node 2', 35 comment: 'comment for node 2', 36 note: 'note for node 2', 37 name: 'node 2', 38 good: true, 39 children: [ 40 { 41 description: 'description for node 2.1', 42 comment: 'comment for node 2.1', 43 note: 'note for node 2.1', 44 name: 'node 2.1', 45 bad: false, 46 }, 47 { 48 description: 'description for node 2.2', 49 comment: 'comment for node 2.2', 50 note: 'note for node 2.2', 51 name: 'node 2.2', 52 good: true, 53 }, 54 { 55 description: 'description for node 2.3', 56 comment: 'comment for node 2.3', 57 note: 'note for node 2.3', 58 name: 'node 2.3', 59 bad: true, 60 good: false, 61 }, 62 ], 63 }, 64 { 65 description: 'description for node 3', 66 comment: 'comment for node 3', 67 note: 'note for node 3', 68 name: 'node 3', 69 bad: true, 70 good: false, 71 children: [ 72 { 73 description: 'description for node 3.1', 74 comment: 'comment for node 3.1', 75 note: 'note for node 3.1', 76 name: 'node 3.1', 77 bad: false, 78 }, 79 { 80 description: 'description for node 3.2', 81 comment: 'comment for node 3.2', 82 note: 'note for node 3.2', 83 name: 'node 3.2', 84 good: true, 85 }, 86 { 87 description: 'description for node 3.3', 88 comment: 'comment for node 3.3', 89 note: 'note for node 3.3', 90 name: 'node 3.3', 91 bad: true, 92 good: false, 93 }, 94 ], 95 }, 96];
1 function displayField(val, key, parent, context) { 2 if (_.isArray(parent)) { 3 key = '[' + key + ']'; 4 } 5 console.log( 6 _.repeat(' ', context.depth) + 7 '→ ' + 8 key + 9 ': ' + 10 (_.isArray(val) 11 ? '[' + val.length + ']' 12 : _.isObject(val) 13 ? '{' + (val.name || '') + '}' 14 : val) 15 ); 16 } 17 18 console.log('\n = Iterate over tree (each child object) = \n'); 19 20 _.eachDeep(children, displayField, { childrenPath: 'children' }); 21 22 console.log('\n = Iterate over object (each field) = \n'); 23 24 _.eachDeep(children, displayField);
= Iterate over tree (each child object) =
→ [0]: {node 1}
→ [0]: {node 1.1}
→ [1]: {node 1.2}
→ [2]: {node 1.3}
→ [1]: {node 2}
→ [0]: {node 2.1}
→ [1]: {node 2.2}
→ [2]: {node 2.3}
→ [2]: {node 3}
→ [0]: {node 3.1}
→ [1]: {node 3.2}
→ [2]: {node 3.3}
= Iterate over object (each field) =
→ [0]: {node 1}
→ description: description for node 1
→ comment: comment for node 1
→ note: note for node 1
→ name: node 1
→ bad: false
→ children: [3]
→ [0]: {node 1.1}
→ description: description for node 1.1
→ comment: comment for node 1.1
→ note: note for node 1.1
→ name: node 1.1
→ bad: false
→ [1]: {node 1.2}
→ description: description for node 1.2
→ comment: comment for node 1.2
→ note: note for node 1.2
→ name: node 1.2
→ good: true
→ [2]: {node 1.3}
→ description: description for node 1.3
→ comment: comment for node 1.3
→ note: note for node 1.3
→ name: node 1.3
→ bad: true
→ good: false
→ [1]: {node 2}
→ description: description for node 2
→ comment: comment for node 2
→ note: note for node 2
→ name: node 2
→ good: true
→ children: [3]
→ [0]: {node 2.1}
→ description: description for node 2.1
→ comment: comment for node 2.1
→ note: note for node 2.1
→ name: node 2.1
→ bad: false
→ [1]: {node 2.2}
→ description: description for node 2.2
→ comment: comment for node 2.2
→ note: note for node 2.2
→ name: node 2.2
→ good: true
→ [2]: {node 2.3}
→ description: description for node 2.3
→ comment: comment for node 2.3
→ note: note for node 2.3
→ name: node 2.3
→ bad: true
→ good: false
→ [2]: {node 3}
→ description: description for node 3
→ comment: comment for node 3
→ note: note for node 3
→ name: node 3
→ bad: true
→ good: false
→ children: [3]
→ [0]: {node 3.1}
→ description: description for node 3.1
→ comment: comment for node 3.1
→ note: note for node 3.1
→ name: node 3.1
→ bad: false
→ [1]: {node 3.2}
→ description: description for node 3.2
→ comment: comment for node 3.2
→ note: note for node 3.2
→ name: node 3.2
→ good: true
→ [2]: {node 3.3}
→ description: description for node 3.3
→ comment: comment for node 3.3
→ note: note for node 3.3
→ name: node 3.3
→ bad: true
→ good: false
› deep filter object ???? see docs
1let children = [ 2 { 3 description: 'description for node 1', 4 comment: 'comment for node 1', 5 note: 'note for node 1', 6 name: 'node 1', 7 bad: false, 8 children: [ 9 { 10 description: 'description for node 1.1', 11 comment: 'comment for node 1.1', 12 note: 'note for node 1.1', 13 name: 'node 1.1', 14 bad: false, 15 }, 16 { 17 description: 'description for node 1.2', 18 comment: 'comment for node 1.2', 19 note: 'note for node 1.2', 20 name: 'node 1.2', 21 good: true, 22 }, 23 { 24 description: 'description for node 1.3', 25 comment: 'comment for node 1.3', 26 note: 'note for node 1.3', 27 name: 'node 1.3', 28 bad: true, 29 good: false, 30 }, 31 ], 32 }, 33 { 34 description: 'description for node 2', 35 comment: 'comment for node 2', 36 note: 'note for node 2', 37 name: 'node 2', 38 good: true, 39 children: [ 40 { 41 description: 'description for node 2.1', 42 comment: 'comment for node 2.1', 43 note: 'note for node 2.1', 44 name: 'node 2.1', 45 bad: false, 46 }, 47 { 48 description: 'description for node 2.2', 49 comment: 'comment for node 2.2', 50 note: 'note for node 2.2', 51 name: 'node 2.2', 52 good: true, 53 }, 54 { 55 description: 'description for node 2.3', 56 comment: 'comment for node 2.3', 57 note: 'note for node 2.3', 58 name: 'node 2.3', 59 bad: true, 60 good: false, 61 }, 62 ], 63 }, 64 { 65 description: 'description for node 3', 66 comment: 'comment for node 3', 67 note: 'note for node 3', 68 name: 'node 3', 69 bad: true, 70 good: false, 71 children: [ 72 { 73 description: 'description for node 3.1', 74 comment: 'comment for node 3.1', 75 note: 'note for node 3.1', 76 name: 'node 3.1', 77 bad: false, 78 }, 79 { 80 description: 'description for node 3.2', 81 comment: 'comment for node 3.2', 82 note: 'note for node 3.2', 83 name: 'node 3.2', 84 good: true, 85 }, 86 { 87 description: 'description for node 3.3', 88 comment: 'comment for node 3.3', 89 note: 'note for node 3.3', 90 name: 'node 3.3', 91 bad: true, 92 good: false, 93 }, 94 ], 95 }, 96];
1 console.log('\n = Filter tree (good children) = \n'); 2 3 console.log( 4 _.filterDeep(children, 'good', { childrenPath: 'children' }) 5 ); 6 7 console.log('\n = Filter object (names of good children) = \n'); 8 9 console.log( 10 _.filterDeep(children, (val, key, parent) => { 11 if (key == 'name' && parent.good) return true; 12 }) 13 );
= Filter tree (good children) =
[
{
"description": "description for node 1",
"comment": "comment for node 1",
"note": "note for node 1",
"name": "node 1",
"bad": false,
"children": [
{
"description": "description for node 1.2",
"comment": "comment for node 1.2",
"note": "note for node 1.2",
"name": "node 1.2",
"good": true
}
]
},
{
"description": "description for node 2",
"comment": "comment for node 2",
"note": "note for node 2",
"name": "node 2",
"good": true,
"children": [
{
"description": "description for node 2.2",
"comment": "comment for node 2.2",
"note": "note for node 2.2",
"name": "node 2.2",
"good": true
}
]
},
{
"description": "description for node 3",
"comment": "comment for node 3",
"note": "note for node 3",
"name": "node 3",
"bad": true,
"good": false,
"children": [
{
"description": "description for node 3.2",
"comment": "comment for node 3.2",
"note": "note for node 3.2",
"name": "node 3.2",
"good": true
}
]
}
]
= Filter object (names of good children) =
[
{
"children": [
{
"name": "node 1.2"
}
]
},
{
"name": "node 2",
"children": [
{
"name": "node 2.2"
}
]
},
{
"children": [
{
"name": "node 3.2"
}
]
}
]
› find first matching deep meta-value ???? see docs
1// next time
1// sorry
❤️
› find first matching deep value ???? see docs
1// next time
1// sorry
❤️
› find the path of the first matching deep value ???? see docs
1// next time
1// sorry
❤️
› get array of values processed by iteratee. ???? see docs
1 let res = _.mapDeep(
2 { hello: { from: { the: 'deep world', and: 'deepdash' } } },
3 (v) => v.toUpperCase(),
4 { leavesOnly: true }
5 );
6 // res -> ['DEEP WORLD','DEEPDASH']
› get the object with same structure, but transformed values. ???? see docs
1 let res = _.mapValuesDeep(
2 { hello: { from: { the: 'deep world' } } },
3 (v) => v.toUpperCase(),
4 { leavesOnly: true }
5 );
6 // res -> { hello: { from: { the: 'DEEP WORLD' } } }
› get the object with same values, but transformed keys. ???? see docs
1 let res = _.mapKeysDeep(
2 { hello: { from: { the: 'deep world' } } },
3 (v, k) => k.toUpperCase()
4 );
5 // res -> { HELLO: { FROM: { THE: 'deep world' } } }
› like reduce, but deep ???? see docs
1 let max = _.reduceDeep({ a: 2, b: 3, c: { d: 6, e: [1, 5, 8] } },
2 (acc, value, key, parent, ctx) => {
3 if (typeof value == 'number' && (typeof acc != 'number' || value > acc))
4 return value;
5 return undefined;
6 }
7 );
8 // max == 8
› returns true if some matching deep value found ???? see docs
1// next time
1// sorry
❤️
› pick values by paths specified by endings or regexes ???? see docs
1let children = [ 2 { 3 description: 'description for node 1', 4 comment: 'comment for node 1', 5 note: 'note for node 1', 6 name: 'node 1', 7 bad: false, 8 children: [ 9 { 10 description: 'description for node 1.1', 11 comment: 'comment for node 1.1', 12 note: 'note for node 1.1', 13 name: 'node 1.1', 14 bad: false, 15 }, 16 { 17 description: 'description for node 1.2', 18 comment: 'comment for node 1.2', 19 note: 'note for node 1.2', 20 name: 'node 1.2', 21 good: true, 22 }, 23 { 24 description: 'description for node 1.3', 25 comment: 'comment for node 1.3', 26 note: 'note for node 1.3', 27 name: 'node 1.3', 28 bad: true, 29 good: false, 30 }, 31 ], 32 }, 33 { 34 description: 'description for node 2', 35 comment: 'comment for node 2', 36 note: 'note for node 2', 37 name: 'node 2', 38 good: true, 39 children: [ 40 { 41 description: 'description for node 2.1', 42 comment: 'comment for node 2.1', 43 note: 'note for node 2.1', 44 name: 'node 2.1', 45 bad: false, 46 }, 47 { 48 description: 'description for node 2.2', 49 comment: 'comment for node 2.2', 50 note: 'note for node 2.2', 51 name: 'node 2.2', 52 good: true, 53 }, 54 { 55 description: 'description for node 2.3', 56 comment: 'comment for node 2.3', 57 note: 'note for node 2.3', 58 name: 'node 2.3', 59 bad: true, 60 good: false, 61 }, 62 ], 63 }, 64 { 65 description: 'description for node 3', 66 comment: 'comment for node 3', 67 note: 'note for node 3', 68 name: 'node 3', 69 bad: true, 70 good: false, 71 children: [ 72 { 73 description: 'description for node 3.1', 74 comment: 'comment for node 3.1', 75 note: 'note for node 3.1', 76 name: 'node 3.1', 77 bad: false, 78 }, 79 { 80 description: 'description for node 3.2', 81 comment: 'comment for node 3.2', 82 note: 'note for node 3.2', 83 name: 'node 3.2', 84 good: true, 85 }, 86 { 87 description: 'description for node 3.3', 88 comment: 'comment for node 3.3', 89 note: 'note for node 3.3', 90 name: 'node 3.3', 91 bad: true, 92 good: false, 93 }, 94 ], 95 }, 96];
1 console.log('\n = Pick name and description only = \n'); 2 3 console.log( 4 _.pickDeep(children, ['name', 'description']) 5 );
= Pick name and description only =
[
{
"description": "description for node 1",
"name": "node 1",
"children": [
{
"description": "description for node 1.1",
"name": "node 1.1"
},
{
"description": "description for node 1.2",
"name": "node 1.2"
},
{
"description": "description for node 1.3",
"name": "node 1.3"
}
]
},
{
"description": "description for node 2",
"name": "node 2",
"children": [
{
"description": "description for node 2.1",
"name": "node 2.1"
},
{
"description": "description for node 2.2",
"name": "node 2.2"
},
{
"description": "description for node 2.3",
"name": "node 2.3"
}
]
},
{
"description": "description for node 3",
"name": "node 3",
"children": [
{
"description": "description for node 3.1",
"name": "node 3.1"
},
{
"description": "description for node 3.2",
"name": "node 3.2"
},
{
"description": "description for node 3.3",
"name": "node 3.3"
}
]
}
]
› get object without paths specified by endings or regexes ???? see docs
1let children = [ 2 { 3 description: 'description for node 1', 4 comment: 'comment for node 1', 5 note: 'note for node 1', 6 name: 'node 1', 7 bad: false, 8 children: [ 9 { 10 description: 'description for node 1.1', 11 comment: 'comment for node 1.1', 12 note: 'note for node 1.1', 13 name: 'node 1.1', 14 bad: false, 15 }, 16 { 17 description: 'description for node 1.2', 18 comment: 'comment for node 1.2', 19 note: 'note for node 1.2', 20 name: 'node 1.2', 21 good: true, 22 }, 23 { 24 description: 'description for node 1.3', 25 comment: 'comment for node 1.3', 26 note: 'note for node 1.3', 27 name: 'node 1.3', 28 bad: true, 29 good: false, 30 }, 31 ], 32 }, 33 { 34 description: 'description for node 2', 35 comment: 'comment for node 2', 36 note: 'note for node 2', 37 name: 'node 2', 38 good: true, 39 children: [ 40 { 41 description: 'description for node 2.1', 42 comment: 'comment for node 2.1', 43 note: 'note for node 2.1', 44 name: 'node 2.1', 45 bad: false, 46 }, 47 { 48 description: 'description for node 2.2', 49 comment: 'comment for node 2.2', 50 note: 'note for node 2.2', 51 name: 'node 2.2', 52 good: true, 53 }, 54 { 55 description: 'description for node 2.3', 56 comment: 'comment for node 2.3', 57 note: 'note for node 2.3', 58 name: 'node 2.3', 59 bad: true, 60 good: false, 61 }, 62 ], 63 }, 64 { 65 description: 'description for node 3', 66 comment: 'comment for node 3', 67 note: 'note for node 3', 68 name: 'node 3', 69 bad: true, 70 good: false, 71 children: [ 72 { 73 description: 'description for node 3.1', 74 comment: 'comment for node 3.1', 75 note: 'note for node 3.1', 76 name: 'node 3.1', 77 bad: false, 78 }, 79 { 80 description: 'description for node 3.2', 81 comment: 'comment for node 3.2', 82 note: 'note for node 3.2', 83 name: 'node 3.2', 84 good: true, 85 }, 86 { 87 description: 'description for node 3.3', 88 comment: 'comment for node 3.3', 89 note: 'note for node 3.3', 90 name: 'node 3.3', 91 bad: true, 92 good: false, 93 }, 94 ], 95 }, 96];
1 console.log('\n = Omit paths not ending with "e" = \n'); 2 3 console.log( 4 _.omitDeep(children, /[^e]$/i, { onMatch: { skipChildren: false } }), 5 );
= Omit paths not ending with "e" =
[
{
"note": "note for node 1",
"name": "node 1",
"children": [
{
"note": "note for node 1.1",
"name": "node 1.1"
},
{
"note": "note for node 1.2",
"name": "node 1.2"
},
{
"note": "note for node 1.3",
"name": "node 1.3"
}
]
},
{
"note": "note for node 2",
"name": "node 2",
"children": [
{
"note": "note for node 2.1",
"name": "node 2.1"
},
{
"note": "note for node 2.2",
"name": "node 2.2"
},
{
"note": "note for node 2.3",
"name": "node 2.3"
}
]
},
{
"note": "note for node 3",
"name": "node 3",
"children": [
{
"note": "note for node 3.1",
"name": "node 3.1"
},
{
"note": "note for node 3.2",
"name": "node 3.2"
},
{
"note": "note for node 3.3",
"name": "node 3.3"
}
]
}
]
› get an object with all the paths as keys and corresponding values ???? see docs
1 let index = _.index( 2 { 3 a: { 4 b: { 5 c: [1, 2, 3], 6 'hello world': {}, 7 }, 8 }, 9 }, 10 { leavesOnly: true } 11 ); 12 console.log(index);
Console:
{ 'a.b.c[0]': 1,
'a.b.c[1]': 2,
'a.b.c[2]': 3,
'a.b["hello world"]': {} }
› get an array of paths ???? see docs
1 let paths = _.paths( 2 { 3 a: { 4 b: { 5 c: [1, 2, 3], 6 'hello world': {}, 7 }, 8 }, 9 }, 10 { leavesOnly: false } 11 ); 12 console.log(paths);
Console:
[ 'a',
'a.b',
'a.b.c',
'a.b.c[0]',
'a.b.c[1]',
'a.b.c[2]',
'a.b["hello world"]' ]
› condense sparse array ???? see docs
1 let arr = ['a', 'b', 'c', 'd', 'e']; 2 delete arr[1]; 3 console.log(arr); 4 delete arr[3]; 5 console.log(arr); 6 _.condense(arr); 7 console.log(arr);
Console:
[ 'a', <1 empty item>, 'c', 'd', 'e' ]
[ 'a', <1 empty item>, 'c', <1 empty item>, 'e' ]
[ 'a', 'c', 'e' ]
› condense all the nested arrays ???? see docs
1 let obj = { arr: ['a', 'b', { c: [1, , 2, , 3] }, 'd', 'e'] }; 2 delete obj.arr[1]; 3 delete obj.arr[3]; 4 _.condenseDeep(obj); 5 console.log(obj);
Console:
{ arr: [ 'a', { c: [ 1, 2, 3 ] }, 'e' ] }
› like a _.has
but returns false
for empty array slots ???? see docs
1 var obj = [, { a: [, 'b'] }]; 2 console.log(_.exists(obj, 0)); // false 3 console.log(_.exists(obj, 1)); // true 4 console.log(_.exists(obj, '[1].a[0]')); // false 5 console.log(_.exists(obj, '[1].a[1]')); // true
› convert an array to string path (opposite to _.toPath) ???? see docs
1 console.log(_.pathToString(['a', 'b', 'c', 'defg', 0, '1', 2.3] 2 ,'prefix1', 'prefix2', '[3]')); 3 // prefix1.prefix2[3].a.b.c.defg[0][1]["2.3"] 4 console.log(_.pathToString(['"', '"', '"'])); 5 // ["\\""]["\\""]["\\""] 6 console.log(_.pathToString('it.s.a.string')); 7 // it.s.a.string
Thanks goes to these wonderful people (emoji key):
This project follows the all-contributors specification. Contributions of any kind welcome!
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 1/29 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
61 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-06-30
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More