« Lodash » : différence entre les versions
Apparence
Ligne 12 : | Ligne 12 : | ||
= [https://lodash.com/docs/4.17.15#replace replace] = | = [https://lodash.com/docs/4.17.15#replace replace] = | ||
Replace pattern match with replacement. | |||
<kode lang='js'> | <kode lang='js'> | ||
// only the first match is replaced | |||
const result = _.replace('A.B.C', '.', '_'); | const result = _.replace('A.B.C', '.', '_'); | ||
// | // A_B.C | ||
const result = _.replace('A.B.C', | |||
// with a regex with 'g', all the matches are replaced | |||
const result = _.replace('A.B.C', /\w/g, '_'); | |||
// _._._ | // _._._ | ||
</kode> | </kode> |
Version du 28 janvier 2021 à 17:12
Links
includes
Checks if value is in collection.
// for string, it checks for a substring of value
if (_.includes('abcd', 'bc')) { }
// true
|
replace
Replace pattern match with replacement.
// only the first match is replaced
const result = _.replace('A.B.C', '.', '_');
// A_B.C
// with a regex with 'g', all the matches are replaced
const result = _.replace('A.B.C', /\w/g, '_');
// _._._
|
forOwn
Iterates over own enumerable string keyed properties of an object.
let json = {
"A": "1",
"B": "2",
"C": {
"C1": "3",
"C2": "4"
},
"D": [ "5", "6" ]
};
_.forOwn(json, (value, key) => {
console.log(`key: ${key} - value: ${value}`);
});
// key: A - value: 1
// key: B - value: 2
// key: C - value: [object Object]
// key: D - value: 5,6
|