sensu.toSensuName() function

sensu.toSensuName() translates a string value to a Sensu name by replacing non-alphanumeric characters ([a-zA-Z0-9_.-]) with underscores (_).

Function type signature
(v: string) => string

For more information, see Function type signatures.

Parameters

v

(Required) String to operate on.

Examples

Convert a string into a Sensu name

import "contrib/sranka/sensu"

sensu.toSensuName(v: "Example name conversion")// Returns "Example_name_conversion"

Was this page helpful?

Thank you for your feedback!