💾 Archived View for gmi.noulin.net › gitRepositories › git-off › file › src › node_modules › mkdirp … captured on 2024-09-29 at 01:12:33. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-01-29)

-=-=-=-=-=-=-

git-off

Log

Files

Refs

README

mkdirp.js (900B)

     1 var mkdirp = require('../');
     2 var path = require('path');
     3 var fs = require('fs');
     4 var exists = fs.exists || path.exists;
     5 var test = require('tap').test;
     6 var _0777 = parseInt('0777', 8);
     7 var _0755 = parseInt('0755', 8);
     8 
     9 test('woo', function (t) {
    10     t.plan(5);
    11     var x = Math.floor(Math.random() * Math.pow(16,4)).toString(16);
    12     var y = Math.floor(Math.random() * Math.pow(16,4)).toString(16);
    13     var z = Math.floor(Math.random() * Math.pow(16,4)).toString(16);
    14     
    15     var file = '/tmp/' + [x,y,z].join('/');
    16     
    17     mkdirp(file, _0755, function (err) {
    18         t.ifError(err);
    19         exists(file, function (ex) {
    20             t.ok(ex, 'file created');
    21             fs.stat(file, function (err, stat) {
    22                 t.ifError(err);
    23                 t.equal(stat.mode & _0777, _0755);
    24                 t.ok(stat.isDirectory(), 'target not a directory');
    25             })
    26         })
    27     });
    28 });