Code Monkey home page Code Monkey logo

Comments (7)

ljharb avatar ljharb commented on April 27, 2024 1

How difficult it would be to achieve is entirely separate and not something I have knowledge of.

However, I can't conceive of any code where this narrowing would be incorrect, including your example.

from typescript.

MartinJohns avatar MartinJohns commented on April 27, 2024

I would say this is a design limitation.

unkown is not a union of the types you listed, so the compiler can't narrow the type in the else branch. This would require a type "unknown, except number", which would first require negated types (#4196).

from typescript.

ljharb avatar ljharb commented on April 27, 2024

Why isn't unknown a union of all possible types? I would expect it to be a named shorthand for null | undefined | string | boolean | number | bigint | symbol | object since that includes every possible JS value.

from typescript.

MartinJohns avatar MartinJohns commented on April 27, 2024

See: #39498 (comment)

from typescript.

ljharb avatar ljharb commented on April 27, 2024

oof, ok - that issue is actually my precise need for that exact same library. That's very unfortunate.

from typescript.

craigphicks avatar craigphicks commented on April 27, 2024

Consider this working code

function nonNumericTypeof(typeofx: "string" | "boolean" | "symbol" | "undefined" | "object" | "function") {
	return true; 
}

function foo(x: unknown) {
    const t = typeof x;
	if (t === 'number' || t === 'bigint') {
		return false;
	}
    t; // const t: "string" | "boolean" | "symbol" | "undefined" | "object" | "function"
    return nonNumericTypeof(t);
}

Conceivably, type information could embed the results of typeof comparisons (both true and false branches because typeof range is finite) . However, there are reasons why that very hard to integrate into current TypeScript, one of which is that number, string, etc. can be promoted to objects for type comparison.

from typescript.

typescript-bot avatar typescript-bot commented on April 27, 2024

This issue has been marked as "Duplicate" and has seen no recent activity. It has been automatically closed for house-keeping purposes.

from typescript.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.