mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 08:08:25 -04:00
10 lines
231 B
JavaScript
10 lines
231 B
JavaScript
|
|
'use strict';
|
||
|
|
var isDetached = require('../internals/array-buffer-is-detached');
|
||
|
|
|
||
|
|
var $TypeError = TypeError;
|
||
|
|
|
||
|
|
module.exports = function (it) {
|
||
|
|
if (isDetached(it)) throw new $TypeError('ArrayBuffer is detached');
|
||
|
|
return it;
|
||
|
|
};
|