'use strict'; const home = require('../home.js'); module.exports = function (stamp) { return { allow: home(stamp) && (stamp.p === 'darwin'), note: 'only macos is supported' }; };