4 lines
128 B
JavaScript
4 lines
128 B
JavaScript
|
'use strict';
|
||
|
/* global Bun -- Deno case */
|
||
|
module.exports = typeof Bun == 'function' && Bun && typeof Bun.version == 'string';
|