Completed
Push — master ( eae854...eca82d )
by Rafael S.
124:29 queued 122:28
created

externs.js ➔ bitDepth   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 4
dl 0
loc 1
rs 10
c 0
b 0
f 0
1
/**
2
 * @fileoverview Externs for bitdepth 7.0
3
 *
4
 * @see https://github.com/rochars/bitdepth
5
 * @externs
6
 */
7
8
/**
9
 * Change the bit depth of samples. The input array.
10
 * @param {!TypedArray} input The samples.
11
 * @param {string} original The original bit depth of the data.
12
 *      One of "8" ... "53", "32f", "64"
13
 * @param {string} target The desired bit depth for the data.
14
 *      One of "8" ... "53", "32f", "64"
15
 * @param {!TypedArray} output The output array.
16
 */
17
function bitDepth(input, original, target, output) {}
0 ignored issues
show
Unused Code introduced by
The parameter input is not used and could be removed.

This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.

Loading history...
Unused Code introduced by
The parameter output is not used and could be removed.

This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.

Loading history...
Unused Code introduced by
The parameter original is not used and could be removed.

This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.

Loading history...
Unused Code introduced by
The parameter target is not used and could be removed.

This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.

Loading history...
18