maplesky 2020-09-15 21:22:12
\/\*[\s\S]*?\*\/|([^:]|^)\/\/.*$
// Comments - 1
function C1() {
alert('');
}
/* Comments - 2 */
function C2() {
alert('');
}
/*
Comments - 3
*/
function C3() {
alert('');
}
/*
* Comments - 4
*/
function C4() {
alert('');
}
评论