Skip to content

Commit

Permalink
fix: blockName regexp incorrect (#852)
Browse files Browse the repository at this point in the history
* fix: blockName regexp incorrect

* fix: change regexp by review

* fix: change by review

* fix: change by review comment
  • Loading branch information
chilingling authored Oct 22, 2024
1 parent b568985 commit 00cdbba
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions packages/controller/js/verification.js
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
/**
* Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
*
* Use of this source code is governed by an MIT-style license.
*
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
*
*/
* Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
*
* Use of this source code is governed by an MIT-style license.
*
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
*
*/

export const REGEXP_EVENT_NAME = /^[a-z]+([A-Z][a-z]*)*$/

export const verifyEventName = (name) => REGEXP_EVENT_NAME.test(name)

export const REGEXP_BLOCK_NAME = /^([A-Z][A-Za-z0-9]{2,})*?([A-Z][A-Za-z0-9]{2,})*?$/
export const REGEXP_BLOCK_NAME = /^([A-Z][a-z0-9]*){2,}$/

export const verifyBlockName = (string) => REGEXP_BLOCK_NAME.test(string)

Expand Down

0 comments on commit 00cdbba

Please sign in to comment.