UNPKG
get-proto
Version:
latest (1.0.1)
1.0.1
1.0.0
Robustly get the [[Prototype]] of an object
github.com/ljharb/get-proto
ljharb/get-proto
get-proto
/
Object.getPrototypeOf.js
7 lines
(4 loc)
•
156 B
JavaScript
View Raw
1
2
3
4
5
6
7
'use strict'
;
var
$Object =
require
(
'es-object-atoms'
);
/**
@type
{
import('./Object.getPrototypeOf')
} */
module
.
exports
= $Object.
getPrototypeOf
||
null
;