* Returns a random CSS-supported color function name. * * @example * faker.color.cssSupportedFunction() // 'rgb' * * @since 7.0.0
()
| 242 | * @since 7.0.0 |
| 243 | */ |
| 244 | cssSupportedFunction(): CssFunctionType { |
| 245 | return this.faker.helpers.enumValue(CssFunction); |
| 246 | } |
| 247 | |
| 248 | /** |
| 249 | * Returns a random CSS-supported color space name. |