Skip to content

Commit 3f17dd5

Browse files
committed
drop extra dependency declaration from array-buffer-byte-length
1 parent db63a6a commit 3f17dd5

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

packages/core-js/internals/array-buffer-byte-length.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ var $TypeError = TypeError;
77
// Includes
88
// - Perform ? RequireInternalSlot(O, [[ArrayBufferData]]).
99
// - If IsSharedArrayBuffer(O) is true, throw a TypeError exception.
10-
// dependency: es.array-buffer.constructor
1110
module.exports = uncurryThisAccessor(ArrayBuffer.prototype, 'byteLength', 'get') || function (O) {
1211
if (classof(O) !== 'ArrayBuffer') throw new $TypeError('ArrayBuffer expected');
1312
return O.byteLength;

0 commit comments

Comments
 (0)