* Returns the merge commit for a CircleCI PR build. CIRCLECI_MERGE_COMMIT is * populated by .circleci/fetch_merge_commit.sh. * @return {string}
()
| 180 | * @return {string} |
| 181 | */ |
| 182 | function circleciPrMergeCommit() { |
| 183 | return isCircleci ? env('CIRCLECI_MERGE_COMMIT') : ''; |
| 184 | } |
| 185 | |
| 186 | /** |
| 187 | * Returns an identifier that is unique to each CircleCI build, discerning for |
no test coverage detected