mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-21 04:41:53 +02:00
11 lines
231 B
JavaScript
11 lines
231 B
JavaScript
import getNative from './_getNative.js';
|
|
|
|
var defineProperty = (function() {
|
|
try {
|
|
var func = getNative(Object, 'defineProperty');
|
|
func({}, '', {});
|
|
return func;
|
|
} catch (e) {}
|
|
}());
|
|
|
|
export default defineProperty;
|