Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

339
Views
What is the equivalent "Yup.transform" of Joi?

I'm using Yup package for data validation schemas but I would like to start to use Joi now. Or atleast, learn it.

This screenshot is what I have now for my app : My Yup version

And I would like to do exactly the same thing but with Joi and I can't find the equivalent of Yup's "transform()" method.

My need is simple: I have a property, I want to accept null values BUT if I get a null value, then I transform it to false (as you see in the screenshot above).

Thanks in advance !

UPDATE:


Yup.boolean().nullable().transform((value) => (value === null ? false : value));

UPDATE 2::

I tried this, it doesn't work :

Joi.boolean().allow(null).custom((value, helper) => {
                if (value === null) {
                    return false;
                }

                return value;
            });

The result of my unit test of the code above :

Expected: false
Received: null
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!