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
| 'use strict'; | |
| const parseExpression = require("./parse-expression"); | |
| function findAll(regex, target) { | |
| let results = [], match; | |
| while (match = regex.exec(target)) { | |
| results.push(match); | |
| } |
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
| package akka.contrib.pattern | |
| import akka.actor.{Cancellable, ActorLogging, ActorRef, Actor} | |
| import java.util | |
| import akka.serialization.SerializationExtension | |
| import scala.concurrent.ExecutionContext | |
| import scala.concurrent.duration._ | |
| import scala.util.{Try, Failure, Success} | |
| import scala.language.existentials | |
| import java.util.UUID |
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
| i | |
| me | |
| my | |
| myself | |
| we | |
| our | |
| ours | |
| ourselves | |
| you | |
| your |