mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-12 23:59:25 +02:00
5 lines
141 B
JavaScript
5 lines
141 B
JavaScript
'use strict';
|
|
const hasOwnProp = Object.prototype.hasOwnProperty;
|
|
|
|
module.exports = (object, property) => hasOwnProp.call(object, property);
|