All files / react-native-web/src/exports/processColor index.js

75% Statements 6/8
75% Branches 6/8
100% Functions 1/1
75% Lines 6/8

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30                        25x 267x         267x 267x       267x   267x        
/**
 * Copyright (c) Nicolas Gallagher.
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 *
 * @flow
 */
 
import normalizeColor from 'normalize-css-color';
 
const processColor = (color?: string | number): ?number => {
  Iif (color === undefined || color === null) {
    return color;
  }
 
  // convert number and hex
  let int32Color = normalizeColor(color);
  Iif (int32Color === undefined || int32Color === null) {
    return undefined;
  }
 
  int32Color = ((int32Color << 24) | (int32Color >>> 8)) >>> 0;
 
  return int32Color;
};
 
export default processColor;