UNPKG

reactxp-navigation

Version:

Plugin for ReactXP that provides a navigation framework

15 lines (13 loc) 288 B
/** * assert * * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT license. * */ const assert = (cond: any, message?: string | undefined) => { if (!cond) { throw new Error(message || 'Assertion Failed'); } }; export default assert;