ShopAI-Extension/scripts/external/check.js
buzz-lightsnack-2007 fc5890bb72 use a module to check
2024-04-26 22:54:35 +08:00

19 lines
No EOL
398 B
JavaScript

/*
check.js
Check if a website is supported.
*/
import filters from '/scripts/filters.js';
export default class check {
/*
Check if an e-commerce platform is supported.
@param {string} URL
@returns {object} the support state
*/
static async platform (URL = window.location.href) {
return (await ((new filters).select(URL)));
}
}