download
raw
716 Bytes
'use strict'
const { unregister, registerBeforeExit } = require('../..')
const assert = require('assert')
function setup () {
const obj = { foo: 'bar' }
registerBeforeExit(obj, shutdown)
}
let shutdownCalled = false
let timeoutFinished = false
function shutdown (obj, event) {
shutdownCalled = true
if (event === 'beforeExit') {
setTimeout(function () {
timeoutFinished = true
assert.strictEqual(obj.foo, 'bar')
unregister(obj)
}, 100)
process.on('beforeExit', function () {
assert.strictEqual(timeoutFinished, true)
})
} else {
throw new Error('different event')
}
}
setup()
process.on('exit', function () {
assert.strictEqual(shutdownCalled, true)
})

Xet Storage Details

Size:
716 Bytes
·
Xet hash:
8ef0eddd50c97ae1a93834a1ff0c09095bb34885bdb3c5df432fae4ffb51987d

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.