@stdlib/array
Version:
Arrays.
62 lines (53 loc) • 2.03 kB
text/typescript
/*
* @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.
*/
import incrspace = require( './index' );
// TESTS //
// The function returns an array of numbers...
{
incrspace( 0, 11, 2 ); // $ExpectType number[]
}
// The compiler throws an error if the function is provided values other than two numbers for the first two parameters...
{
incrspace( true, 10, 1 ); // $ExpectError
incrspace( false, 10, 1 ); // $ExpectError
incrspace( '5', 10, 1 ); // $ExpectError
incrspace( [], 10, 1 ); // $ExpectError
incrspace( {}, 20, 1 ); // $ExpectError
incrspace( ( x: number ): number => x, 20, 1 ); // $ExpectError
incrspace( 9, true, 1 ); // $ExpectError
incrspace( 9, false, 1 ); // $ExpectError
incrspace( 5, '5', 1 ); // $ExpectError
incrspace( 8, [], 1 ); // $ExpectError
incrspace( 9, {}, 1 ); // $ExpectError
incrspace( 8, ( x: number ): number => x, 1 ); // $ExpectError
}
// The compiler throws an error if the function is provided a value other than a number for the third parameter...
{
incrspace( 3, 20, true ); // $ExpectError
incrspace( 4, 20, false ); // $ExpectError
incrspace( 2, 20, '5' ); // $ExpectError
incrspace( 2, 20, [] ); // $ExpectError
incrspace( 2, 20, {} ); // $ExpectError
incrspace( 9, 20, ( x: number ): number => x ); // $ExpectError
}
// The compiler throws an error if the function is provided insufficient arguments...
{
incrspace(); // $ExpectError
incrspace( 3 ); // $ExpectError
incrspace( 3, 4 ); // $ExpectError
}