Tuesday, June 5, 2018

TypeScript Recipe: Elegant Parse Boolean

There are many ways to convert String to Boolean or Number to Boolean, etc.
Here we will do it all in one and stop worry about form of boolean like parameters we receive from outside.


Lets' Convert 1 '1' and 'true' to true and 0 '0' 'false' null and undefined to false

0 and 1 to false and true

Double Negation operator works perfectly here:

TypeScript
return !!0; // Returns false
return !!1; // Returns true

'0' and '1' strings to false and true

All we need to parse string representation to number and we already know that Double Negation operator works perfectly there:

TypeScript
return !!+'0'; // Returns false
return !!+'1'; // Returns true

Note: By using the + operator you we cast the strings to int.


null and undefined to false

Not strict null check is the shortest way to do so:

TypeScript
return value != null; // Returns false for null add undefined

Or we could use Double Negation here as well:

TypeScript
return !!null; // Returns false
return !!undefined; // Returns true

Note: Double negation is definitely faster than two strict comparisons (one for null and one for undefined).


Convert primitive to boolean

Convert 1 '1' and 'true'to true and 0 '0' 'false' null and undefined to false:

TypeScript
function primitiveToBoolean(value?: string | number | boolean | null): boolean {
  if (value == null) {
    return false;
  }

  if (value === 'true') {
    return true;
  }

  return typeof value === 'string'
    ? !!+value   // we parse string to number first
    : !!value;
}

Or if we do not worry about typeof call it might be even more elegant:

TypeScript
function primitiveToBoolean(value?: string | number | boolean | null): boolean {
  if (value === 'true') {
    return true;
  }

  return typeof value === 'string'
    ? !!+value   // we parse string to number first
    : !!value;
}

Here is Unit test to verify how it works:

TypeScript
describe('primitiveToBoolean', () => {
    it('should be true if its 1 / "1" or "true"', () => {
      expect(primitiveToBoolean(1)).toBe(true);
      expect(primitiveToBoolean('1')).toBe(true);
      expect(primitiveToBoolean('true')).toBe(true);
      expect(primitiveToBoolean(111)).toBe(true);
    });
    it('should be false if its 0 / "0" or "false"', () => {
      expect(primitiveToBoolean(0)).toBe(false);
      expect(primitiveToBoolean('0')).toBe(false);
      expect(primitiveToBoolean('false')).toBe(false);
      expect(primitiveToBoolean('bullshit')).toBe(false);
    });
    it('should be false if its null or undefined', () => {
      expect(primitiveToBoolean(null)).toBe(false);
      expect(primitiveToBoolean(undefined)).toBe(false);
    });
    it('should pass through booleans - useful for undefined checks', () => {
      expect(primitiveToBoolean(true)).toBe(true);
      expect(primitiveToBoolean(false)).toBe(false);
    });
  });

Conclusion

If we've cared about all boolean like parameters within the proper context, we could forget all those miss-communication and miss-configuration problems with third-parties we face in production.


see Also


5 comments:

  1. Do Follow URL Submission is a social bookmarking submission website that provide you genuine do follow link for backlink of your website
    Do Follow URL Submission

    ReplyDelete
  2. Nice Blog, When i was read this blog i learnt new things & its truly have well stuff related to developing technology, Thank you for sharing this blog.
    Microsoft Azure Training in Chennai | Azure Training in Chennai

    ReplyDelete
  3. Good explanation information
    Sanjary Kids is one of the best play school and preschool in Hyderabad,India. Give your child the best preschool experience by choosing the best playschool of Hyderabad in Abids. we provide programs like Play group,Nursery,Junior KG,Senior KG,and provides Teacher Training Program.
    Preschool teacher training course in hyderabad

    ReplyDelete
  4. Nice information of the blog provided

    Sanjary Academy is the best Piping Design institute in Hyderabad, Telangana. It is the best Piping design Course in India and we have offer professional Engineering Courses like Piping design Course, QA/QC Course, document controller course, Pressure Vessel Design Course, Welding Inspector Course, Quality Management Course and Safety Officer Course.
    Piping Design Course
    Piping Design Course in Hyderabad ­
    Piping Design Course in India­

    ReplyDelete
  5. Thanks for sharing the blog information

    Sanjary Academy provide pressure vessel design, quality management system course piping design course, qa/qc course and document controller course.
    Welding Inspector Course
    Safety officer course
    Quality Management Course
    Quality Management Course in India

    ReplyDelete