UNPKG

@sberid/js-sdk

Version:

Javascript SDK для партнеров Сбер ID, упрощающая подключение SberbankID на сайте.

10 lines (7 loc) 227 B
export const getMeta = (metaName: string): string => { const meta = document.querySelector(`meta[name="${metaName}"]`); if (!meta) { return ''; } return meta.getAttribute('content') || ''; };