mirror of
https://github.com/vatesfr/xen-orchestra.git
synced 2026-09-11 06:29:51 -05:00
10 lines
176 B
JavaScript
10 lines
176 B
JavaScript
'use strict'
|
|
|
|
const MASK = 0x80
|
|
|
|
exports.set = (map, bit) => {
|
|
map[bit >> 3] |= MASK >> (bit & 7)
|
|
}
|
|
|
|
exports.test = (map, bit) => ((map[bit >> 3] << (bit & 7)) & MASK) !== 0
|