This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class ClassTest { | |
| public static class A_MODEL { | |
| public B_MODEL b; | |
| public C_MODEL c; | |
| } | |
| public static class A_DTO { | |
| public B_DTO b; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export function once(func) { | |
| let invoked = false; | |
| return function() { | |
| if (invoked) { | |
| return; | |
| } | |
| invoked = true; | |
NewerOlder