mirror of
https://code.forgejo.org/actions/setup-python.git
synced 2026-03-17 20:45:56 +03:00
11 lines
233 B
JavaScript
11 lines
233 B
JavaScript
var getNative = require('./_getNative');
|
|
|
|
var defineProperty = (function() {
|
|
try {
|
|
var func = getNative(Object, 'defineProperty');
|
|
func({}, '', {});
|
|
return func;
|
|
} catch (e) {}
|
|
}());
|
|
|
|
module.exports = defineProperty;
|