Develop ultra fast with Prismane 🎉

starts

This validator checks if a string starts with a given substring.

Basic Usage

import { starts } from "@prismane/core/validators";

console.log(starts("www.", "www.mysite.com")); // Will return null
console.log(starts("www.", "mysite.eu")); // Will return an error`

useForm Hook Usage

function Demo() {
  const { handleSubmit, handleReset, register } = useForm({
    fields: {
      url: {
        value: "",
        validators: {
          starts: (v: string) => starts(v, "www."),
        },
      },
    },
  });

  return (
    <Form
      onSubmit={(e: any) => {
        handleSubmit(e, (v: any) => console.log(v));
      }}
      onReset={() => handleReset()}
      maw={300}
    >
      <TextField
        placeholder="eg. www.mysite.com"
        label="URL:"
        {...register("url")}
      />
      <Button type="submit">Submit</Button>
    </Form>
  );
}

API

Parameters

NameTypeDescription
valuestringThe string that will be validated.
prefixstringThe prefix that will be searched.
fieldNamestring / undefinedThe name of the field.