Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unsafe #__PURE__ annotation #4

Merged
merged 1 commit into from
Aug 28, 2020
Merged

Remove unsafe #__PURE__ annotation #4

merged 1 commit into from
Aug 28, 2020

Conversation

Andarist
Copy link

@Andarist Andarist commented Feb 8, 2020

Terser's output with this annotation:

import r from"cssjanus";export const STYLIS_PROPERTY_CONTEXT=-1;function t(t,o){if(-1===t)return r.transform(o)}export default t;

Notice that Object.defineProperty call is gone, because of a #__PURE__ annotation put before it. That annotation should be IMHO used only before calls that are assigned to smth, so like:

var foo = /*#__PURE__*/ createFoo()

so when foo stays unused then createFoo can be dropped as well.

Verified

This commit was created on github.com and signed with GitHub’s verified signature. The key has expired.
@quantizor quantizor merged commit 84336e1 into master Aug 28, 2020
@quantizor quantizor deleted the Andarist-patch-1 branch August 28, 2020 03:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants