All files / workspace/utils toCase.js

100% Statements 48/48
100% Branches 7/7
100% Functions 4/4
100% Lines 48/48

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 481x 1x 1x 1x 1x 79283x 79283x 79283x 1x 1x 510x 510x 510x 1x 1x 30x 30x 30x 476x 476x 476x 476x 30x 30x 30x 1x 1x 18x 18x 18x 230x 230x 230x 230x 18x 18x 18x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x
import Is from 'strong-type';
 
const is=new Is;
 
const toCamel=function(key){
    is.string(key);
    return key[0].toLowerCase()+key.slice(1);
}
 
const toPascal=function(key){
    is.string(key);
    return key[0].toUpperCase()+key.slice(1);
}
 
const pascalObjectKeys=function(target){
    const pascalFormat={};
        
    for(const [key,value] of Object.entries(target)){
        const pascalKey=toPascal(key);
        
        pascalFormat[pascalKey]=value;
    }
 
    return pascalFormat;
}
 
const camelObjectKeys=function(target){
    const camelFormat={};
        
    for(const [key,value] of Object.entries(target)){
        const camelKey=toCamel(key);
        
        camelFormat[camelKey]=value;
    }
 
    return camelFormat;
}
 
 
const old={toCamel,toPascal,pascalObjectKeys,camelObjectKeys}
 
export {
    old as default,
    toCamel,
    toPascal,
    pascalObjectKeys,
    camelObjectKeys
}