Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
const { singleAssignBool } = { singleAssignBool: true };
let { objPatternBool } = { objPatternBool: true };
({ objPatternBool } = { objPatternBool: false });
let [ arrPatternBool ] = [ true ];
[arrPatternBool] = [false];
let [{inner: [ nestedPatternBool ]}] = [{inner: [ true ]}];
[{inner: [ nestedPatternBool ]}] = [{inner: [ false ]}];