Jblew/firestore-roles-redux-module

View on GitHub
src/util.ts

Summary

Maintainability
A
0 mins
Test Coverage
export function ow_catch(fn: () => void): boolean | string {
    try {
        fn();
        return true;
    } catch (error) {
        return error + "";
    }
}