UNPKG

oidc-lib

Version:

A library for creating OIDC Service Providers

18 lines (15 loc) 371 B
/*! * Copyright (c) 2019-2020 Digital Bazaar, Inc. All rights reserved. */ 'use strict'; /** * Miscellaneous Javascript utility and helper functions used in the .html * pages in this demo. */ function onDocumentReady(fn) { if(document.readyState !== 'loading') { fn(); } else { document.addEventListener('DOMContentLoaded', fn); } }