summaryrefslogtreecommitdiffstats
path: root/debian/missing-sources/bourbon/app/assets/stylesheets/functions/_is-number.scss
blob: febad3dacea7c2ee0847b64fd2ba79feb14c507f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@charset "UTF-8";

/// Checks for a valid number.
///
/// @param {Number} $value
///
/// @require {function} contains

@function is-number($value) {
  @if $output-bourbon-deprecation-warnings == true {
    @warn "[Bourbon] [Deprecation] `is-number` is deprecated and will be " +
    "removed in 5.0.0.";
  }

  @return contains("0" "1" "2" "3" "4" "5" "6" "7" "8" "9" 0 1 2 3 4 5 6 7 8 9, $value);
}