"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.isUSInvestor = void 0;
const usCountries = ['United States', 'Puerto Rico'];
const isUSInvestor = user => usCountries.includes(user.country);
exports.isUSInvestor = isUSInvestor;