UNPKG

@stdlib/utils

Version:

Standard utilities.

71 lines (63 loc) 1.86 kB
/* * @license Apache-2.0 * * Copyright (c) 2021 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ // TypeScript Version: 4.1 /** * Callback function. * * @param error - encountered error or null * @param result - either the result of `x` or the provided argument `y` */ type Callback = ( error: Error | null, result: any ) => void; /** * Function to invoke. * * @param clbk - callback to invoke upon function completion */ type TryFunction = ( clbk: Callback ) => void; /** * If a function does not return an error, invokes a callback with the function result; otherwise, invokes a callback with a value `y`. * * @param x - function to invoke * @param y - value to return if `x` returns an error * @param done - callback to invoke upon completion * * @example * var randu = require( '@stdlib/random/base/randu' ); * * function x( clbk ) { * setTimeout( onTimeout, 0 ); * function onTimeout() { * if ( randu() > 0.5 ) { * return clbk( null, 1.0 ); * } * clbk( new Error( 'beep' ) ); * } * } * * function done( error, result ) { * if ( error ) { * console.log( error.message ); * } * console.log( result ); * } * * trycatchAsync( x, -1.0, done ); */ declare function trycatchAsync( x: TryFunction, y: any, done: Callback ): void; // EXPORTS // export = trycatchAsync;