I am trying to create a folder using mkdirp node module. but it is creating with permission 0775 but i am in need to create with 0777 permission. official documentation says it is default to 0777 but in my case it is 0755. can anyone help me? code:
var new_location = 'public/images/u/7/';
mkdirp(new_location, function(err) {
if (err) {
} else {
}
});