File size: 133 Bytes
b5ea024
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
"use strict";

module.exports = function () {
	try {
		Object.keys("primitive");
		return true;
	} catch (e) {
		return false;
	}
};