How to use the unlinkSync function from fs-promise

Find comprehensive JavaScript fs-promise.unlinkSync code examples handpicked from public code repositorys.

154
155
156
157
158
159
160
161
162
163
this.user.icon = `https://storage.googleapis.com/hs-profile-picture/${fileID}`;
return Users.update({
    _id: this.user._id,
}, this.user).then(() => {
    // Remove the icon from local disk
    fp.unlinkSync(filePath);
    res.json({
        icon: this.user.icon,
    });
});
fork icon0
star icon1
watch icon2

+ 665 other calls in file

321
322
323
324
325
326
327
328
329
330
return gcsCoverImage.upload(coverImagePath).then(file => {
    file = file[0];
    return file.makePublic()
    .then(url => {
        coverImage = url[0];
        fsp.unlinkSync(coverImagePath);
        track.coverImage = `https://storage.googleapis.com/hs-cover-image/${fileID}`;
        updateTitle();
    })
})
fork icon0
star icon1
watch icon2

+ 665 other calls in file